File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,6 @@ typings/
54
54
# Yarn Integrity file
55
55
.yarn-integrity
56
56
57
- # dotenv environment variables file
58
- .env
59
-
60
57
# next.js build output
61
58
.next
62
59
Original file line number Diff line number Diff line change
1
+ # Required for running external components!
2
+ EXTEND_ESLINT = true
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
parser : '@typescript-eslint/parser' , // Specifies the ESLint parser
3
3
extends : [
4
- 'plugin:react/recommended' , // Uses the recommended rules from @eslint -plugin-react
5
- 'plugin:@typescript-eslint/recommended' , // Uses the recommended rules from @typescript -eslint/eslint-plugin
4
+ // Extend on the config used in `react-scripts`
5
+ require . resolve ( 'eslint-config-react-app' ) ,
6
+ // If you want extra rules/extensions, it can be added here:
7
+ // 'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
8
+ // 'plugin:@typescript-eslint/recommended', // Uses the recommended rules from @typescript-eslint/eslint-plugin
6
9
] ,
7
10
parserOptions : {
8
11
ecmaVersion : 2018 , // Allows for the parsing of modern ECMAScript features
You can’t perform that action at this time.
0 commit comments