This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
73 lines (73 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"env": {
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/strict"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": "latest",
"sourceType": "module"
},
"ignorePatterns": [
"certificates",
"coverage",
"latest.log",
"jest.config.js",
"config.example.json",
"package.json",
"README.md",
"FUNDING.yml",
"tailwind.config.js",
"release.config.js",
"settings.json",
"index.html",
"main.js"
],
"rules": {
"indent": ["error", 4],
"linebreak-style": ["error"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-console": "error",
"comma-dangle": ["error", "never"],
"arrow-parens": ["error", "always"],
"arrow-body-style": ["error", "always"],
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unnecessary-condition": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"no-case-declarations": "off",
"max-len": [
"error",
{
"code": 250
}
],
"object-curly-newline": [
"error",
{
"multiline": true,
"consistent": false
}
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
]
}
}