1
0
Эх сурвалжийг харах

neovim/nixpkgs: fix local lint rule check

Thomas Dy 2 жил өмнө
parent
commit
247d9fb066

+ 2 - 2
.config/nixpkgs/neovim/lsp.lua

@@ -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