forked from GMOD/bam-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
31 lines (30 loc) · 981 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
27
28
29
30
31
{
"parser": "@typescript-eslint/parser",
"plugins": ["prettier", "@typescript-eslint", "unicorn"],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:unicorn/recommended"
],
"rules": {
"no-underscore-dangle": 0,
"curly": "error",
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"semi": ["error", "never"],
"unicorn/no-new-array": 0,
"unicorn/prefer-at": 0,
"unicorn/catch-error-name": 0,
"unicorn/no-nested-ternary": 0,
"unicorn/prefer-spread": 0,
"unicorn/consistent-destructuring": 0,
"unicorn/prefer-node-protocol": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/number-literal-case": 0,
"unicorn/numeric-separators-style": 0,
"unicorn/filename-case": 0,
"unicorn/prefer-code-point": 0
}
}