Change python tools for astral

closes #2
This commit is contained in:
Alexander Navarro 2024-09-13 09:57:44 -03:00
parent 8b85cf7c9e
commit 0887d2a5bb
Signed by untrusted user who does not match committer: anavarro
GPG key ID: 6426043E9FA3E3B5
6 changed files with 1439 additions and 3 deletions

View file

@ -24,7 +24,7 @@ return {
markdown = { "markdownlint" },
nim = { "nimpretty" },
php = { "pint" },
python = { "blue" },
python = { "ruff" },
scss = { "prettierd", "prettier", stop_after_first = true },
sh = { "shfmt" },
typescript = { "prettierd", "prettier", stop_after_first = true },

View file

@ -13,7 +13,7 @@ return {
javascriptreact = { "eslint_d" },
typescriptreact = { "eslint_d" },
-- astro = { "eslint_d" },
python = { "pylint" },
python = { "ruff" },
sh = { "shellcheck" },
NeogitCommitMessage = { "gitlint" },
gitcommit = { "gitlint" },

View file

@ -91,6 +91,7 @@ return {
},
},
},
ruff = {},
rust_analyzer = {
settings = {
["rust-analyzer"] = {

View file

@ -6,7 +6,7 @@ return {
opts = {
ensure_installed = {
"blue",
"pylint",
"ruff",
"eslint_d",
"markdownlint",
"nimlsp",