-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc
105 lines (104 loc) · 2.96 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:compat/recommended",
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"env": {
"browser": true,
"commonjs": false,
"es6": true,
"mocha": true,
"node": true,
"shared-node-browser": true,
"webextensions": true,
"worker": true
},
"globals": {},
"rules": {
"arrow-parens": [
"error",
"as-needed",
{ "requireForBlockBody": true }
],
"max-classes-per-file": "off",
"no-multiple-empty-lines": "off",
"implicit-arrow-linebreak": "off",
"prefer-destructuring": "off",
"object-curly-newline": [
"error",
{
"consistent": true
}],
"no-control-regex": "off",
"compat/compat": "error",
"import/extensions": "off",
"class-methods-use-this": "off",
"no-restricted-syntax": [
"error",
"ForInStatement",
"LabeledStatement",
"WithStatement"
],
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "always-multiline",
"functions": "ignore"
}],
"no-underscore-dangle": "off",
"import/no-unresolved": "off",
"no-restricted-globals": ["error", "Worker"],
},
"overrides": [
{
files: ["**/*.ts"],
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:compat/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
rules: {
"lines-between-class-members": "off"
}
},
{
"files": [
"modules/**/tests/**/*.*",
"modules/**/*tests.bundle.*",
"modules/**/*helpers.*",
"fern.js",
"fern/**/*.js"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"func-names": ["error", "never"],
"prefer-arrow-callback": "off",
"no-unused-expressions": "off",
"object-shorthand": "off",
"no-console": "off"
}
},
{
"files": [
"fern/commands/*.*",
"broccoli/**/*.*"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"global-require": "off",
"import/no-dynamic-require": "off",
"strict": "off",
"no-console": "off"
}
}
]
}