Skip to content

Commit d19ad38

Browse files
eslint
1 parent f5d3807 commit d19ad38

File tree

3 files changed

+1233
-0
lines changed

3 files changed

+1233
-0
lines changed

.eslintrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": ["@typescript-eslint"],
5+
"extends": [],
6+
"rules": {
7+
"no-console": "off",
8+
"no-unused-vars": "off",
9+
"@typescript-eslint/no-unused-vars": "off",
10+
"@typescript-eslint/no-explicit-any": "off",
11+
"no-undef": "off",
12+
"@typescript-eslint/no-var-requires": "off",
13+
"no-inner-declarations": "off",
14+
"@typescript-eslint/no-this-alias": "off"
15+
},
16+
"env": {
17+
"node": true
18+
}
19+
}

0 commit comments

Comments
 (0)