-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
41 lines (41 loc) · 968 Bytes
/
.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
38
39
40
41
{
"root": true,
"env": {
"node": true,
"es2023": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@tsed/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vitest/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"workspaces",
"simple-import-sort",
"@tsed"
],
"rules": {
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-unused-vars": 2,
"@typescript-eslint/no-var-requires": 0,
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"workspaces/no-absolute-imports": "error",
"prettier/prettier": [
"error",
{
"printWidth": 140,
"singleQuote": false,
"jsxSingleQuote": true,
"semi": false,
"tabWidth": 2,
"bracketSpacing": true,
"arrowParens": "always",
"trailingComma": "none",
"endOfLine":"auto"
}
]
}
}