-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
26 lines (26 loc) · 989 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
{
"extends": ["standard-with-typescript", "prettier", "plugin:import/typescript"],
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "warn",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-misused-promises": ["error", { "checksVoidReturn": false }],
"import/no-unresolved": "warn",
"react/no-unknown-property": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"quotes": ["warn", "single"],
"semi": ["warn", "never"],
"comma-dangle": ["warn", "always-multiline"]
},
"root": true
}