prithivMLmods
commited on
Commit
•
6c6d53f
1
Parent(s):
33bb910
Create .eslintrc.json
Browse files- .eslintrc.json +21 -0
.eslintrc.json
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"env": {
|
3 |
+
"browser": true,
|
4 |
+
"es2021": true,
|
5 |
+
"node": true
|
6 |
+
},
|
7 |
+
"extends": [
|
8 |
+
"eslint:recommended",
|
9 |
+
"plugin:@typescript-eslint/recommended",
|
10 |
+
"prettier"
|
11 |
+
],
|
12 |
+
"parser": "@typescript-eslint/parser",
|
13 |
+
"parserOptions": {
|
14 |
+
"ecmaVersion": 12,
|
15 |
+
"sourceType": "module"
|
16 |
+
},
|
17 |
+
"plugins": ["@typescript-eslint"],
|
18 |
+
"rules": {
|
19 |
+
"@typescript-eslint/no-explicit-any": "off"
|
20 |
+
}
|
21 |
+
}
|