-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 811 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"./node_modules/gts",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"node/no-unpublished-import": ["off"]
},
"env": {
"browser": true
},
"overrides": [{
"files": [
"**/*.ts",
"**/*.tsx"
],
"plugins": ["@typescript-eslint"]
},{
"files": [
"**/*.js"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/no-var-requires": ["off"],
"node/no-unsupported-features/es-syntax": ["off"]
},
"plugins": []
},
{
"files": [
"jest/**/*.js",
"jest-utils/**/*.tsx",
"**/*.test.ts",
"**/*.test.tsx"
],
"env": {
"jest": true // now **/*.test.js files' env has both es6 *and* jest
},
"plugins": ["jest"]
}]
}