gpt4 book ai didi

javascript - Eslint:警告文件默认被忽略。使用否定忽略模式

转载 作者:行者123 更新时间:2023-12-01 16:18:36 24 4
gpt4 key购买 nike

我是使用 Eslint 的新手。

到目前为止,我已经在本地项目中安装了 Eslint 并进行了配置。 eslintrc.js 文件包含

module.exports = {
env: {
node: true,
commonjs: true,
es6: true,
mocha: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {
},
};

在 package.json 我有
  "scripts": {
"lint": "eslint .eslintrc.js --fix",
}

在终端我跑
npm run lint
输出是
> apigateway@1.0.0 lint C:\nodeprojects\restapi
> eslint .eslintrc.js --fix


C:\nodeprojects\restapi\.eslintrc.js
0:0 warning File ignored by default. Use a negated ignore pattern (like "--ignore-pattern '!<relative/path/to/filename>'") to override

但如果我跑
eslint <foldername> --fix然后它工作。

我正在使用 webstorm IDE 和 windows 操作系统。

非常感谢任何帮助。

最佳答案

您的 npm 脚本在 .eslintrc.js 上运行 linter文件,这个文件正如评论所说 File ignored by default.
您需要从以下位置更改 lint 脚本:
"lint": "eslint .eslintrc.js --fix",
至:
"lint": "eslint <foldername> --fix"
在哪里 <foldername>是正确的文件夹。

关于javascript - Eslint:警告文件默认被忽略。使用否定忽略模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57947585/

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