Files
dotfiles/.config/nvim/lua/plugins/linting.lua
T
cdanesi 1c52cb4ac0 chore: improve Markdown and codeblock formatting
- Update `prettier.lua` to handle injected code blocks with correct `lang_to_ft` and `lang_to_ext` mappings
- Remove deprecated `markdown_inline` filetype; rely on injected formatting instead
- Update `linting.lua` to match new configuration
- Remove unused formatting and linting tools
2025-10-04 19:22:31 -04:00

52 lines
1.1 KiB
Lua

return {
'mfussenegger/nvim-lint',
event = { 'BufReadPre', 'BufNewFile' },
config = function()
local lint = require('lint')
lint.linters_by_ft = {
-- Lua
lua = {},
-- Shell / Bash / Zsh
sh = { 'shellcheck' },
bash = { 'shellcheck' },
-- Markdown
markdown = { 'markdownlint' },
-- markdown_inline = { 'markdownlint' },
-- Web / Frontend
html = { 'htmlhint' },
css = { 'stylelint' },
javascript = { 'eslint_d' },
php = { 'trivy' },
-- YAML
yaml = { 'yamllint' },
-- JSON
json = { 'jsonlint', 'jq' },
-- Python
python = { 'pylint' },
-- Git commit messages
gitcommit = { 'gitlint' },
-- SQL
sql = { 'sqlfluff' },
}
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
group = lint_augroup,
callback = function()
lint.try_lint()
end,
})
end,
}