Compare commits

...

2 commits

Author SHA1 Message Date
adaf322077
ci: Turn down alex's profanity filter 2025-03-17 19:45:38 -07:00
366799025a
fix: Apply alex to prose types only 2025-03-17 19:44:56 -07:00
2 changed files with 12 additions and 7 deletions

3
.alexrc Normal file
View file

@ -0,0 +1,3 @@
{
"profanitySureness": 2
}

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' },
},