Remove global formatters and linters
All checks were successful
/ check (push) Successful in 1m12s

Following commit 724753327, this removes all global formatters and
linters so I can move them into project-specific flake.nix and .nvim.lua
files.
This commit is contained in:
Oliver Davies 2025-05-22 08:38:49 +01:00
parent 10bb187e7f
commit 6e4c690e5d
2 changed files with 3 additions and 51 deletions

View file

@ -1,14 +1,7 @@
local lint = require "lint"
lint.linters_by_ft = {
dockerfile = { "hadolint" },
javascript = { "eslint_d" },
json = { "jsonlint" },
lua = { "luacheck" },
markdown = { "markdownlint" },
nix = { "nix" },
php = { "php", "phpcs", "phpstan" },
}
lint.linters_by_ft = {};
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {