I am using eslint as a linter for my react project and I would like it to check all of my .js
files.
I am able to do this through the script:
"lint": "eslint back/*.js && eslint backTest/*.js && eslint front/actions/*.js"
how can I get it to examine every .js
file recursively, something like:
"lint": "eslint -r *.js"
This would save me having to type out each file individually.