fix: Apply alex to prose types only
This commit is contained in:
parent
119e6df3c5
commit
366799025a
1 changed files with 9 additions and 7 deletions
|
@ -3,21 +3,23 @@ return {
|
||||||
'mfussenegger/nvim-lint',
|
'mfussenegger/nvim-lint',
|
||||||
opts = {
|
opts = {
|
||||||
linters_by_ft = {
|
linters_by_ft = {
|
||||||
['*'] = { 'codespell', 'editorconfig-checker', 'alex' },
|
['*'] = { 'codespell', 'editorconfig-checker' },
|
||||||
bash = { 'shellcheck' },
|
bash = { 'shellcheck' },
|
||||||
css = { 'stylelint' },
|
css = { 'stylelint' },
|
||||||
django = { 'djlint' },
|
django = { 'djlint', 'alex' },
|
||||||
env = { 'dotenv-linter' },
|
env = { 'dotenv-linter' },
|
||||||
ghaction = { 'zizmor' },
|
ghaction = { 'zizmor' },
|
||||||
handlebars = { 'djlint' },
|
handlebars = { 'djlint', 'alex' },
|
||||||
html = { 'htmlhint' },
|
html = { 'htmlhint', 'alex' },
|
||||||
jinja = { 'djlint' },
|
jinja = { 'djlint', 'alex' },
|
||||||
mustache = { 'djlint' },
|
markdown = { 'alex' },
|
||||||
|
mustache = { 'djlint', 'alex' },
|
||||||
nix = { 'deadnix', 'statix' },
|
nix = { 'deadnix', 'statix' },
|
||||||
nunjucks = { 'djlint' },
|
nunjucks = { 'djlint', 'alex' },
|
||||||
scss = { 'stylelint' },
|
scss = { 'stylelint' },
|
||||||
sh = { 'shellcheck' },
|
sh = { 'shellcheck' },
|
||||||
twig = { 'djlint' },
|
twig = { 'djlint' },
|
||||||
|
txt = { 'alex' },
|
||||||
yaml = { 'yamllint' },
|
yaml = { 'yamllint' },
|
||||||
zsh = { 'zsh' },
|
zsh = { 'zsh' },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue