-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxlintrc.json
More file actions
20 lines (20 loc) · 807 Bytes
/
Copy path.oxlintrc.json
File metadata and controls
20 lines (20 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"rules": {
"typescript/consistent-type-imports": "error",
"typescript/consistent-type-exports": "error",
"typescript/no-import-type-side-effects": "error",
"no-duplicate-imports": "error",
"typescript/no-require-imports": "error",
"no-unused-vars": "error",
"typescript/no-floating-promises": "error",
"typescript/await-thenable": "error",
"typescript/switch-exhaustiveness-check": "error",
"typescript/no-unnecessary-type-assertion": "error",
"typescript/no-base-to-string": "error",
"typescript/no-unnecessary-condition": "error",
"typescript/prefer-nullish-coalescing": "error",
"typescript/prefer-optional-chain": "error",
"typescript/no-unnecessary-type-arguments": "error",
"typescript/no-unnecessary-type-parameters": "error"
}
}