You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 28, 2020. It is now read-only.
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?