I have a project using ES6 modules that I would like to add linting for.
Here is what I have in my .eslintrc
file:
env:
browser: true
es6: true
extends: 'eslint:recommended'
parserOptions:
sourceType: module
My ESLint invocation looks like this: eslint script.js
where script.js
has import
statements to other modules in my project.
script.js
is being linted just fine, but ESLint is not continuing on to it's specified import
s.
Is there a way to make ESLint crawl my source for me? Perhaps this isn't the default behavior...if not, is there a best practice to accomplish this?
I solved this problem by invoking eslint for each separate file like this:
Certain directories (like
web/build
) are excluded with: