-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
27 lines (27 loc) · 826 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
{
"extends": ["plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"newline-after-var": ["error", "always"],
"newline-before-return": "error",
"no-param-reassign": "off",
"padding-line-between-statements": [
"error",
// {
// " blankLine": "always",
// "next": "*",
// "prev": ["const", "let", "var"]
// },
// {
// "blankLine": "any",
// "next": ["const", "let", "var"],
// "prev": ["const", "let", "var"]
// }
]
}
}