fix: Apply alex to prose types only

This commit is contained in:
punkfairie 2025-03-17 19:44:42 -07:00
parent 119e6df3c5
commit 366799025a
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -3,21 +3,23 @@ return {
'mfussenegger/nvim-lint',
opts = {
linters_by_ft = {
['*'] = { 'codespell', 'editorconfig-checker', 'alex' },
['*'] = { 'codespell', 'editorconfig-checker' },
bash = { 'shellcheck' },
css = { 'stylelint' },
django = { 'djlint' },
django = { 'djlint', 'alex' },
env = { 'dotenv-linter' },
ghaction = { 'zizmor' },
handlebars = { 'djlint' },
html = { 'htmlhint' },
jinja = { 'djlint' },
mustache = { 'djlint' },
handlebars = { 'djlint', 'alex' },
html = { 'htmlhint', 'alex' },
jinja = { 'djlint', 'alex' },
markdown = { 'alex' },
mustache = { 'djlint', 'alex' },
nix = { 'deadnix', 'statix' },
nunjucks = { 'djlint' },
nunjucks = { 'djlint', 'alex' },
scss = { 'stylelint' },
sh = { 'shellcheck' },
twig = { 'djlint' },
txt = { 'alex' },
yaml = { 'yamllint' },
zsh = { 'zsh' },
},