|
@@ -21,10 +21,10 @@ local null_ls_sources = {
|
|
|
}
|
|
|
|
|
|
if vim.fn.executable("node_modules/.bin/eslint") == 1 then
|
|
|
- options = {}
|
|
|
+ local options = {}
|
|
|
-- some projects have local rules, this isn't exactly generic but is good
|
|
|
-- enough
|
|
|
- if vim.fn.isdirectory("lint-rules") then
|
|
|
+ if vim.fn.isdirectory("lint-rules") == 1 then
|
|
|
options.rulePaths = { "./lint-rules" }
|
|
|
end
|
|
|
|