1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
local lint = require("lint")
local cspell = {
name = "cspell",
config_patterns = {
".cspell.json",
"cspell.json",
".cSpell.json",
"cSpell.json",
"cspell.config.js",
"cspell.config.cjs",
"cspell.config.json",
"cspell.config.yaml",
"cspell.config.yml",
"cspell.yaml",
"cspell.yml",
},
fast = true,
}
local linters = { cspell }
local linter_names = vim.tbl_map(function(l) return l.name end, linters)
local function cru_lint(linter, opt)
opt = opt or {}
if not opt.buf then
opt.buf = 0
end
if 0 ~= #vim.fs.find(linter.config_patterns, {
path = vim.api.nvim_buf_get_name(opt.buf), upward = true }) then
lint.try_lint(linter.name)
end
end
local function cru_lint_one(name, opt)
for _, linter in ipairs(linters) do
if linter.name == name then
cru_lint(linter, opt)
return
end
end
vim.notify("No linter named " .. name .. " is configured.", vim.log.levels.ERROR, {})
end
local function cru_lint_all(opt, fast)
for _, linter in ipairs(linters) do
if not fast or linter.fast then
cru_lint(linter, opt)
end
end
end
local function cru_lint_all_fast(opt)
local buf = opt.buf
if vim.api.nvim_get_option_value("buftype", { buf = buf }) == "" then
cru_lint_all(opt, true)
end
end
local function setup()
vim.api.nvim_create_autocmd({ "BufReadPost", "InsertLeave", "TextChanged" }, { callback = cru_lint_all_fast })
local function cru_lint_cmd(opt)
if #opt.args == 0 then
cru_lint_all(opt, false)
else
cru_lint_one(opt.args, opt)
end
end
vim.api.nvim_create_user_command("CruLint", cru_lint_cmd,
{ nargs = '?', complete = function() return linter_names end })
end
return {
setup = setup,
}
|