update
This commit is contained in:
parent
71c5af4b85
commit
0ce62a3c96
|
@ -194,20 +194,21 @@ local null_ls = require("null-ls")
|
|||
local null_ls_utils = require("null-ls.utils")
|
||||
local root = null_ls_utils.get_root()
|
||||
local eslint_command = root .. "/node_modules/eslint/bin/eslint.js"
|
||||
print(eslint_command);
|
||||
-- print(eslint_command);
|
||||
|
||||
local sources = {
|
||||
null_ls.builtins.formatting.prettierd,
|
||||
null_ls.builtins.diagnostics.eslint.with({
|
||||
condition = function(utils)
|
||||
local has_file = utils.root_has_file({"node_modules/@wordpress/scripts/config/.eslintrc.js"})
|
||||
local has_file = utils.root_has_file({
|
||||
"node_modules/@wordpress/scripts/config/.eslintrc.js"
|
||||
})
|
||||
print("condition")
|
||||
print(has_file)
|
||||
return has_file
|
||||
end,
|
||||
extra_args = {
|
||||
"--no-eslintrc",
|
||||
"--config ",
|
||||
"--no-eslintrc", "--config ",
|
||||
root .. "/node_modules/@wordpress/scripts/config/.eslintrc.js",
|
||||
"--ignore-path ",
|
||||
root .. "/node_modules/@wordpress/scripts/config/.eslintignore"
|
||||
|
|
Loading…
Reference in New Issue