Add stuff and find-files ignore

This commit is contained in:
Zam Kokott
2026-02-23 18:13:21 +00:00
parent 206ab83ea9
commit 66b3e24ad3
5 changed files with 37 additions and 18 deletions

View File

@@ -3,14 +3,14 @@ return {
config = function()
local lint = require("lint")
lint.linters_by_ft = {
python = { 'dmypy' }
python = { 'mypy' }
}
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(nil, {ignore_errors = true})
lint.try_lint(nil, { ignore_errors = true })
end,
})
end