-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
29 lines (29 loc) · 899 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
29
{
"env": {
"browser": true,
"es2021": true
},
"extends": "standard-with-typescript",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project":"./tsconfig.json",
"tsConfigRootDir":"__dirname"
},
"parser": "@typescript-eslint/parser",
"rules": {
"quotes":["warn","double"],
"semi":["warn","always"],
"no-unused-vars":"warn",
"camelcase":"warn",
"no-unused-expressions":"warn",
"space-before-function-paren":["warn","always"],
"@typescript-eslint/semi": ["warn","always"],
"@typescript-eslint/quotes": ["warn","double"],
"@typescript-eslint/naming-convention":["warn"],
"@typescript-eslint/no-unused-vars":["warn"],
"@typescript-eslint/space-before-function-paren":["warn","always"]
}
}