有没有办法禁用文件夹的特定规则?例如,我不希望文件test夹中的所有测试文件都需要 JSDoc 注释。有没有办法做到这一点?
test
要从 eslint 规则中忽略某些文件夹,我们可以.eslintignore在根目录中创建文件,并在那里添加我们想要省略的文件夹的路径(与 for 相同.gitignore)。
.eslintignore
.gitignore
以下是 ESLint 文档中有关忽略文件和目录的示例:
# path/to/project/root/.eslintignore # /node_modules/* and /bower_components/* in the project root are ignored by default # Ignore built files except build/index.js build/* !build/index.js