Not compatible with VS Code + ESLint plugin
Created by: kyleect
Perhaps this is an issue not in the scope of this project but...
Steps
$ create-react-app testApp && cd testApp
- Open project in VS Code with ESLint plugin installed
- Open any javascript file
Expected
ESLint plugin lints my code and displays errors.
Actual
VS Code display this error: No ESLint configuration found
This makes sense because there isn't an eslint config file anywhere. I ran npm run eject
and changed config/eslint.js
to config/.eslintrc.js
to match '**/.eslintr{c.js,c.yaml,c.yml,c,c.json}'
per https://github.com/Microsoft/vscode-eslint/blob/master/eslint/extension.ts#L40. This didn't fix the issue. Does anyone have any suggestions?