Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何配置.eslintr.js忽略所有非 js 文件?
.eslintr.js
我.eslintignore使用该规则启动了一个文件,!**/*.js但不起作用。
.eslintignore
!**/*.js
你很近。在否定 ( )的.eslintignore 部分!(强调我的):
!
前面的行!是否定的模式,它重新包含一个被早期模式忽略的模式。
因此,忽略所有内容(您可以使用 blob,或特定目录等),然后取消忽略 js 文件:
src/ !src/**/*.js