-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.eslintrc
More file actions
21 lines (21 loc) · 582 Bytes
/
Copy path.eslintrc
File metadata and controls
21 lines (21 loc) · 582 Bytes
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",
"plugins": [
"eslint-plugin-import"
],
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/member-ordering": "error",
"eol-last": "error",
"object-curly-spacing": ["error", "always"],
"semi": ["error", "never"],
"space-before-function-paren": ["error", "always"]
}
}