I placed the file .eslintignorein the root of my installation to create a reaction-application, so I can ignore warnings from libor providers.
It works fine if I run eslint from the command line:
./node_modules/.bin/eslint src/js/vendor/jquery.js
...warnings ignored...
However, launching npm startand npm run buildseems to ignore the ignore file.
How can I achieve what I want to do here - without editing separate vendor files to add eslint options?
source
share