-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
44 lines (44 loc) · 1.22 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"extends": [
"xo/esnext",
"xo-lass",
"xo-typescript",
"./node_modules/xo/config/plugins.js",
"prettier"
],
"rules": {
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/semi": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"ava/no-ignored-test-files": "off",
"ava/no-async-fn-without-await": "off",
"import/no-unresolved": "off",
"import/no-unassigned-import": "off",
"prefer-object-spread": "off",
"indent": "off",
"max-params": "off",
"new-cap": "off",
"no-await-in-loop": "off",
"no-return-await": "off",
"object-curly-spacing": "off",
"padding-line-between-statements": "off",
"promise/valid-params": "off",
"semi": "off",
"unicorn/catch-error-name": "off",
"unicorn/filename-case": "off",
"unicorn/no-abusive-eslint-disable": "off"
}
}