This repository was archived by the owner on Sep 28, 2020. It is now read-only.
This repository was archived by the owner on Sep 28, 2020. It is now read-only.
eslint-loader doesn't check if additional .eslintrc exists #129
Closed
Description
eslint
gives ability to overrides rules for specific folders, for example:
- app/
- app/index.js
- app/.eslintrc // (a) Overrides rules from (b)
- index.js
- .eslintrc // (b)
In my project when I use eslint
by eslint-cli
I don't get any errors but when I develop and use webpack
+ eslint-loader
, then I get errors.
ERROR in ./src/components/Icons/IconSearch.js
/a/b/c/e/f/g/h/src/components/Icons/IconSearch.js
8:1 error Line 8 exceeds the maximum line length of 100 max-len
✖ 1 problem (1 error, 0 warnings)
@ ./src/views/home/index.js 13:0-61
@ ./src/app/routes.js
@ ./src/app/index.js
@ ./src/index.js
@ multi app
I don't want append
/* eslint-disable max-len */
in each file that contains SVG because I have a lot of icons...
Is there any way to instrument this loader to check if additional .eslintrc
files exists?
Metadata
Metadata
Assignees
Labels
No labels