forked from osztenkurden/dota2gsi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 755 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-console": 1,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function":0,
"no-empty": 0,
"@typescript-eslint/no-var-requires":0,
"no-mixed-spaces-and-tabs": ["warn", "smart-tabs"],
"@typescript-eslint/explicit-function-return-type":0,
"@typescript-eslint/camelcase":0
}
}