diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-12-22 22:15:48 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-12-22 22:15:48 +0100 |
commit | 3c83308ebeedf5ee6634079a029861e151b97426 (patch) | |
tree | fc4435ff0ffa525656ad4959fa014e9b77110a76 /fnl/config/lsp/null-ls.fnl | |
parent | cb76756457ab8af4b048d342cb148ac05a386042 (diff) |
Replace black, flake8, and pyright with ruff
Diffstat (limited to 'fnl/config/lsp/null-ls.fnl')
-rw-r--r-- | fnl/config/lsp/null-ls.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/config/lsp/null-ls.fnl b/fnl/config/lsp/null-ls.fnl index 674fa1c..7b810c8 100644 --- a/fnl/config/lsp/null-ls.fnl +++ b/fnl/config/lsp/null-ls.fnl @@ -5,7 +5,7 @@ (let [formatting null-ls.builtins.formatting diagnostics null-ls.builtins.diagnostics] (null-ls.setup {:debug false - :sources [diagnostics.flake8 + :sources [diagnostics.ruff diagnostics.jsonlint diagnostics.shellcheck diagnostics.sqlfluff @@ -13,7 +13,7 @@ diagnostics.hadolint diagnostics.cpplint diagnostics.yamllint - (formatting.black.with {:extra_args [:--fast]}) + formatting.ruff formatting.fnlfmt (formatting.prettier.with {:extra_args [:--no-semi :--single-quote |