-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
52 lines (52 loc) · 1.13 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
45
46
47
48
49
50
51
52
{
"env": {
"es6": true,
"node": true
},
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/all",
"standard",
"prettier"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/camelcase": "off",
"prettier/prettier": "error",
"jest/no-hooks": "off",
"jest/prefer-expect-assertions": "off",
"jest/no-standalone-expect": "off",
"jest/expect-expect": [
"warn",
{
"assertFunctionNames": [
"expect",
"request.*.expect"
]
}
],
"jest/lowercase-name": "off",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-useless-constructor": "off",
"camelcase": "off"
},
"ignorePatterns": [
"dist",
"coverage",
"node_modules"
]
}