-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
52 lines (52 loc) · 1.35 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"root": true,
"env": {
"browser": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"curly": "error",
"comma-dangle": "off",
"camelcase": "off",
"linebreak-style": ["error", "unix"],
"@typescript-eslint/camelcase": [
"error",
{
"properties": "always"
}
],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/class-name-casing": "error",
"@typescript-eslint/prefer-includes": "error",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": true,
"trailingComma": "none",
"bracketSpacing": true,
"tabWidth": 2,
"printWidth": 120,
"parser": "typescript",
"quoteProps": "preserve",
"arrowParens": "always"
}
]
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020,
"project": "./tsconfig.json"
}
}