Compare commits

..

No commits in common. "47495b845a3e2104fb4ea660d81b65d3112db9c5" and "bd130216e8976a1641a835cf953333348655cf16" have entirely different histories.

2 changed files with 4 additions and 11 deletions

View File

@ -41,7 +41,6 @@ in
ruff ruff
gh gh
gofumpt gofumpt
taplo
] ++ nodePkgs; ] ++ nodePkgs;
sessionVariables = { sessionVariables = {

View File

@ -7,9 +7,9 @@ language-servers = ["nixd"]
command = "nixd" command = "nixd"
[language-server.pylsp.config.pylsp.plugins] [language-server.pylsp.config.pylsp.plugins]
ruff = { enabled = true } ruff = {enabled = true}
rope = { enabled = true } rope = {enabled = true}
mypy = { enabled = true } mypy = {enabled = true}
[[language]] [[language]]
name = "bash" name = "bash"
@ -23,10 +23,4 @@ language-servers = ["gopls", "golangci-lint-langserver"]
command = "golangci-lint-langserver" command = "golangci-lint-langserver"
[language-server.golangci-lint-langserver.config] [language-server.golangci-lint-langserver.config]
command = [ command = ["golangci-lint", "run", "--out-format", "json", "--issues-exit-code=1"]
"golangci-lint",
"run",
"--out-format",
"json",
"--issues-exit-code=1",
]