-
Notifications
You must be signed in to change notification settings - Fork 29
/
.eslintrc
37 lines (37 loc) · 1.01 KB
/
.eslintrc
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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"quotes": ["error", "single", { "allowTemplateLiterals": true }],
"@typescript-eslint/no-var-requires": 1,
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/no-inferrable-types": "off",
"semi": [2, "always"],
"prefer-const": ["error", {
"destructuring": "all",
"ignoreReadBeforeAssign": false
}],
"no-var": 2,
"comma-dangle": [2, "always-multiline"],
"@typescript-eslint/no-explicit-any": "off",
"brace-style": "error",
"object-curly-spacing": [2, "always"]
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"useJSXTextNode": true,
"tsconfigRootDir": "./"
},
"ignorePatterns": ["dist", "examples"]
}