-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (48 loc) · 1.62 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
{
"root": true,
"extends": "airbnb",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react",
"jsx-a11y",
"import"
],
"parser": "babel-eslint",
"rules": {
"arrow-parens": ["error", "as-needed", { "requireForBlockBody": false }],
"consistent-return": ["off"],
"prefer-rest-params": ["off"],
"no-else-return": ["off"],
"no-param-reassign": ["off"],
"no-restricted-syntax": ["off"],
"no-underscore-dangle": ["off", { "allowAfterThis": true, "allowAfterSuper": true }],
"no-restricted-globals": ["off"],
"guard-for-in": ["off"],
"react/jsx-filename-extension": ["off"],
"import/prefer-default-export": ["off"],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": [
"benchmark/**", // benchmark
"test/**", // tape, common npm pattern
"tests/**", // also common npm pattern
"spec/**", // mocha, rspec-like pattern
"**/__tests__/**", // jest pattern
"test.js", // repos with a single test file
"test-*.js", // repos with multiple top-level test files
"**/*.test.js", // tests where the extension denotes that it is a test
"**/*.spec.js", // tests where the extension denotes that it is a test
"**/webpack.config.js", // webpack config
"**/webpack.config.*.js", // webpack config
"**/rollup.config.js", // rollup config
"**/rollup.config.*.js", // rollup config
"**/gulpfile.js", // gulp config
"**/gulpfile.*.js", // gulp config
"**/Gruntfile" // grunt config
],
"optionalDependencies": false
}]
}
}