lint: remove shellcheck for zsh
This commit is contained in:
parent
d178c3286b
commit
75c49d24d7
1 changed files with 1 additions and 2 deletions
3
init.lua
3
init.lua
|
|
@ -179,7 +179,7 @@ lint.linters.clippy = {
|
||||||
stdin = false,
|
stdin = false,
|
||||||
append_fname = true,
|
append_fname = true,
|
||||||
args = {},
|
args = {},
|
||||||
stream = nil, -- ('stdout' | 'stderr' | 'both') configure the stream to which the linter outputs the linting result.
|
stream = 'stdout',
|
||||||
ignore_exitcode = false,
|
ignore_exitcode = false,
|
||||||
env = nil,
|
env = nil,
|
||||||
parser = require('lint.parser').from_errorformat(clippy_format)
|
parser = require('lint.parser').from_errorformat(clippy_format)
|
||||||
|
|
@ -191,7 +191,6 @@ linters = {
|
||||||
python = {'flake8'},
|
python = {'flake8'},
|
||||||
rust = {'clippy'},
|
rust = {'clippy'},
|
||||||
yaml = {'yamllint'},
|
yaml = {'yamllint'},
|
||||||
zsh = {'shellcheck'},
|
|
||||||
}
|
}
|
||||||
-- set linters --
|
-- set linters --
|
||||||
lint.linters_by_ft = linters
|
lint.linters_by_ft = linters
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue