generated from eldargab/hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.eslintrc
28 lines (28 loc) · 842 Bytes
/
.eslintrc
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
{
"extends": ["eslint-config-unjs"],
"ignorePatterns": ["tests/**", "src/model"],
"rules": {
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-unused-vars": 0,
"generator-star-spacing": 0,
"import/no-named-as-default-member": 0,
"indent": 0,
"new-cap": 0,
"no-case-declarations": 0,
"prefer-const": 0,
"prefer-rest-params": 0,
"prefer-spread": 0,
"require-await": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0,
"unicorn/no-array-callback-reference": 0,
"unicorn/no-array-for-each": 0,
"unicorn/no-nested-ternary": 0,
"unicorn/no-null": 0,
"unicorn/number-literal-case": 0,
"unicorn/prefer-code-point": 0,
"unicorn/prefer-math-trunc": 0,
"unicorn/text-encoding-identifier-case": 0,
"no-useless-constructor": 0
}
}