Skip to content

Commit b88b9ea

Browse files
Merge branch 'feature/testing-and-ci-pipeline' of https://github.com/AET-DevOps25/team-3 into feature/testing-and-ci-pipeline
2 parents fe023b6 + 4457243 commit b88b9ea

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

client/.eslintrc.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"browser": true,
5+
"es2020": true,
6+
"node": true
7+
},
8+
"extends": [
9+
"eslint:recommended"
10+
],
11+
"ignorePatterns": ["dist", ".eslintrc.json"],
12+
"parser": "@typescript-eslint/parser",
13+
"plugins": ["@typescript-eslint", "react-refresh"],
14+
"rules": {
15+
"react-refresh/only-export-components": "warn",
16+
"@typescript-eslint/no-explicit-any": "warn",
17+
"@typescript-eslint/no-unused-vars": "warn",
18+
"no-unused-vars": "off",
19+
"no-undef": "off"
20+
}
21+
}

0 commit comments

Comments
 (0)