On the ESLint site they say that .eslintrc is deprecated and that we should use one of the following in that order:
.eslintrc.js
.eslintrc.yaml
.eslintrc.yml
.eslintrc.json
- .
eslintrc (deprecated)
package.json
I could just update the eslint's settings.json to one of those, but that did not seem to work well for me. Is there a way to update the Interactive Linter to look for one of those files?
On the ESLint site they say that
.eslintrcis deprecated and that we should use one of the following in that order:.eslintrc.js.eslintrc.yaml.eslintrc.yml.eslintrc.jsoneslintrc(deprecated)package.jsonI could just update the eslint's settings.json to one of those, but that did not seem to work well for me. Is there a way to update the Interactive Linter to look for one of those files?