forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
30 lines (30 loc) · 834 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
29
30
{
"extends": ["eslint-config-unjs", "plugin:require-extensions/recommended"],
"plugins": [
"require-extensions"
],
"rules": {
"space-before-function-paren": 0,
"arrow-parens": 0,
"comma-dangle": 0,
"semi": 0,
"unicorn/prevent-abbreviations": 0,
"quotes": 0,
"keyword-spacing": 0,
"no-undef": 0,
"indent": 0,
"import/named": 0,
"unicorn/catch-error-name": 0,
"unicorn/no-null": 0,
"unicorn/no-useless-undefined": 0,
"unicorn/no-await-expression-member": 0,
"unicorn/no-array-push-push": 0,
"unicorn/filename-case": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"unicorn/expiring-todo-comments": 0,
"no-unexpected-multiline": 0,
"no-useless-constructor": 0,
"unicorn/prefer-ternary": 0
}
}