Skip to content

Commit 546bb24

Browse files
committed
Add es lint configuration file
1 parent 0d412a2 commit 546bb24

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"overrides": [
7+
{
8+
"files": ["*.ts", "*.tsx"],
9+
"extends": [
10+
"plugin:@typescript-eslint/eslint-recommended",
11+
"plugin:@typescript-eslint/recommended"
12+
],
13+
"parser": "@typescript-eslint/parser",
14+
"plugins": ["@typescript-eslint"]
15+
}
16+
],
17+
"plugins": ["react", "react-hooks"],
18+
"rules": {}
19+
}

0 commit comments

Comments
 (0)