generated from jonatanmartinbabel/ngx-single-spa
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
21 lines (21 loc) · 725 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["prefer-arrow"],
"extends": ["plugin:@typescript-eslint/recommended"],
"rules": {
"semi": ["error", "always"],
"indent": "off",
"@typescript-eslint/indent": ["off"],
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/explicit-member-accessibility": ["off"],
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-non-null-assertion": ["off"],
"@typescript-eslint/no-use-before-define": ["off"],
"@typescript-eslint/no-parameter-properties": ["off"],
"@typescript-eslint/ban-ts-comment": ["off"]
}
}