Hoang Nguyen
c991be4740
Nothing to see here yet, except: - Add `nogo` support. Closes #2 (I only use the analyzers from golang.org/x/tools, so nogo right now is not really on par with golangci-lint) - Remove golangci-lint - Fill out providers.toml file (it was daunting -_-) - Update bazel deps
20 lines
399 B
Nix
20 lines
399 B
Nix
# SPDX-FileCopyrightText: 2023 Hoang Nguyen <folliekazetani@protonmail.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
_: {
|
|
projectRootFile = "flake.lock";
|
|
|
|
programs = {
|
|
buildifier.enable = true;
|
|
|
|
# NOTE: https://github.com/cue-lang/cue/issues/2523
|
|
# cue.enable = true;
|
|
|
|
gofumpt = { enable = true; extra = true; };
|
|
|
|
nixpkgs-fmt.enable = true;
|
|
|
|
statix.enable = true;
|
|
};
|
|
}
|