-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
28 lines (28 loc) · 886 Bytes
/
.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
{
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"extends": "standard-with-typescript",
"overrides": [],
"rules": {
"@typescript-eslint/semi": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/readonly": "off",
"@typescript-eslint/space-before-function-paren": "off",
"@typescript-eslint/prefer-readonly": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/object-curly-spacing": "off",
"@typescript-eslint/indent": "off",
"no-prototype-builtins": "off",
"padded-blocks": "off"
}
}