fix(nvim): ignore line lengths in markdown files
This commit is contained in:
parent
265803b240
commit
f9b8a73ca4
|
@ -28,7 +28,9 @@ null_ls.setup {
|
||||||
return utils.root_has_file { ".eslintrc.js" }
|
return utils.root_has_file { ".eslintrc.js" }
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
diagnostics.markdownlint,
|
diagnostics.markdownlint.with {
|
||||||
|
extra_args = { "--disable", "MD013" }
|
||||||
|
},
|
||||||
diagnostics.php,
|
diagnostics.php,
|
||||||
diagnostics.phpcs.with {
|
diagnostics.phpcs.with {
|
||||||
command = "./vendor/bin/phpcs",
|
command = "./vendor/bin/phpcs",
|
||||||
|
|
Reference in a new issue