mirror of
https://github.com/sbrow/nix.git
synced 2026-06-27 10:48:33 -04:00
fix: updated linter.
This commit is contained in:
@@ -72,6 +72,13 @@ linters:
|
|||||||
disable-builtin: false
|
disable-builtin: false
|
||||||
exclusions:
|
exclusions:
|
||||||
- "*.TableName"
|
- "*.TableName"
|
||||||
|
sloglint:
|
||||||
|
attr-only: true
|
||||||
|
context: "scope"
|
||||||
|
key-naming-case: "camel"
|
||||||
|
static-msg: true
|
||||||
|
# no-raw-keys: true
|
||||||
|
msg-style: "lowercased"
|
||||||
formatters:
|
formatters:
|
||||||
enable:
|
enable:
|
||||||
- goimports
|
- goimports
|
||||||
|
|||||||
@@ -58,17 +58,43 @@
|
|||||||
settings.formatter.prettier =
|
settings.formatter.prettier =
|
||||||
{
|
{
|
||||||
excludes = [
|
excludes = [
|
||||||
|
"assets/vendor/**"
|
||||||
"public/**"
|
"public/**"
|
||||||
"resources/js/modernizr.js"
|
"resources/js/modernizr.js"
|
||||||
"storage/app/caniuse.json"
|
"storage/app/caniuse.json"
|
||||||
|
"templates/**"
|
||||||
"*.md"
|
"*.md"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.golangci-lint.enable = true;
|
# Appears to be broken?
|
||||||
|
programs.golangci-lint.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
process-compose.default.settings.processes = {
|
packages.default = pkgs.buildGoModule rec {
|
||||||
|
# pname = "package-name";
|
||||||
|
version = "0.1.0";
|
||||||
|
src = ./.;
|
||||||
|
vendorHash = "sha256-0000000000000000000000000000000000000000000=";
|
||||||
|
|
||||||
|
env.CGO_ENABLED = 1;
|
||||||
|
buildInputs = [ pkgs.sqlite ];
|
||||||
|
|
||||||
|
# subPackages = [ ];
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-X git.verticalaxion.com/verticalaxion/sales-tracker-go/internal/config.Version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
# postInstall = ''
|
||||||
|
# mkdir -p $out/lib
|
||||||
|
# cp -r ${src}/templates $out/lib/templates
|
||||||
|
# cp -r ${src}/assets $out/lib/assets
|
||||||
|
# '';
|
||||||
|
};
|
||||||
|
|
||||||
|
# Run this with nix run .#dev
|
||||||
|
process-compose.dev.settings.processes = {
|
||||||
mail.command = "${pkgs.mailhog}/bin/MailHog";
|
mail.command = "${pkgs.mailhog}/bin/MailHog";
|
||||||
web.command = "${pkgs.air}/bin/air --";
|
web.command = "${pkgs.air}/bin/air --";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user