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?
Perhaps this is an issue not in the scope of this project but...
Steps
$ create-react-app testApp && cd testAppExpected
ESLint plugin lints my code and displays errors.
Actual
VS Code display this error:
No ESLint configuration foundThis makes sense because there isn't an eslint config file anywhere. I ran
npm run ejectand changedconfig/eslint.jstoconfig/.eslintrc.jsto 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?