forked from 123inkt/123view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.cjs
35 lines (35 loc) · 1.48 KB
/
eslint.config.cjs
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
32
33
34
35
module.exports = [
{
...require('eslint-config-love'),
files: ['assets/**/*.ts'],
rules: {
"no-multi-spaces": ["off"],
"no-return-assign": ["off"],
"@typescript-eslint/indent": ["error", 4],
"@typescript-eslint/no-confusing-void-expression": ["error", {"ignoreArrowShorthand": true}],
"@typescript-eslint/no-extraneous-class": ["off"],
"@typescript-eslint/no-invalid-void-type": ["off", {"allowAsThisParameter": true}],
"@typescript-eslint/no-unnecessary-boolean-literal-compare": ["off"],
"@typescript-eslint/object-curly-spacing": ["error", "never"],
"@typescript-eslint/promise-function-async": ["off"],
"@typescript-eslint/restrict-template-expressions": ["off"],
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/space-before-function-paren": ["error", "never"],
"@typescript-eslint/unbound-method": ["off"],
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "semi",
"requireLast": false
},
"multilineDetection": "brackets"
}
]
},
},
]