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:
parent
10bb187e7f
commit
6e4c690e5d
2 changed files with 3 additions and 51 deletions
|
@ -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" }, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue