Skip to content

Commit abfe1e9

Browse files
authored
Extended esconfig in package.json
This will ignore some pretty harmless errors when deploying to GitHub Pages, that would otherwise prevent deployment.
1 parent 327c3ee commit abfe1e9

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

package.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,25 @@
2929
"extends": [
3030
"react-app",
3131
"react-app/jest"
32-
]
32+
],
33+
"rules": {
34+
"no-unused-vars": 0,
35+
"no-empty-pattern": 0,
36+
"@typescript-eslint/no-unused-vars": 0,
37+
"react-hooks/exhaustive-deps": 0
38+
}
39+
},
40+
"prettier": {
41+
"tabWidth": 2,
42+
"useTabs": false,
43+
"printWidth": 80,
44+
"singleQuote": false,
45+
"bracketSameLine": false,
46+
"bracketSpacing": true,
47+
"semi": false,
48+
"trailingComma": "es5",
49+
"arrowParens": "always",
50+
"endOfLine": "lf"
3351
},
3452
"browserslist": {
3553
"production": [

0 commit comments

Comments
 (0)