gpt4 book ai didi

eslint - 导入 `` ,ESLint : Cannot read property 'range' of null Occurred while linting

转载 作者:行者123 更新时间:2023-12-03 14:38:31 40 4
gpt4 key购买 nike

错误是因为这行代码

item.component = () => import(`@/views/${_component}`)

如果我修改 .eslintrc.js , 有用
'indent' : "off",
'template-curly-spacing' : "off",

但是这样,eslint 不会帮我格式化代码

当我运行以下代码时,他无法工作,但 eslint 没有错误:
item.component = () => import(`@/views/` + _component)
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"eslint": "5.15.3",

节点-v:v12.9.1

eslint -v: v6.8.0

vscode

最佳答案

尝试设置你的 eslint 缩进规则 包含:忽略节点 对于模板文字。我的 eslintrc.js有以下内容:

rules: {
indent: [2, "tab", {
ignoredNodes: ["TemplateLiteral"]
}],
... etc ...
}

这将忽略扩展 template literals .

如果上述方法不起作用,请尝试删除: package.jsonnode_modules然后用 npm i 重新安装或 yarn .

关于eslint - 导入 `` ,ESLint : Cannot read property 'range' of null Occurred while linting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59851788/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com