When I have the following listed in my .eslintignore
file:
**/*.ts
I encounter this issue:
Error: All files matched by '.' are ignored.
Is there a way to suppress this error? My intention is simply to deactivate eslint for a specific submodule.
This is how my directory structure looks like:
root:
.eslintignore
submodule:
.eslintignore
- I attempted using
submodule/**
inroot/.eslintignore
, but it didn't work.