在.eslintignore
中具有:
**/*.ts
字符串
我明白了
Error: All files matched by '.' are ignored.
型
我想忽略这个错误,我该怎么做?我的目标只是禁用eslint的一个子模块
我有目录结构:
root:
.eslintignore
submodule:
.eslintignore
型
- 我在
root/.eslintignore
中试过:submodule/**
个
在.eslintignore
中具有:
**/*.ts
字符串
我明白了
Error: All files matched by '.' are ignored.
型
我想忽略这个错误,我该怎么做?我的目标只是禁用eslint的一个子模块
我有目录结构:
root:
.eslintignore
submodule:
.eslintignore
型
root/.eslintignore
中试过:submodule/**
个
1条答案
按热度按时间gjmwrych1#
要使eslint忽略使用
.eslintignore
文件的特定子模块,应添加一个glob模式,并在前面加上一个正斜杠-/
。在你的情况下,加上
字符串
应该可以
不支持在嵌套文件夹中添加
.eslintignore
。