forked from miragejs/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
53 lines (53 loc) · 1011 Bytes
/
.eslintrc.js
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
module.exports = {
root: true,
parser: "babel-eslint",
plugins: ["import"],
extends: [
"eslint:recommended",
"plugin:import/errors",
"plugin:prettier/recommended",
],
env: {
es6: true,
node: true,
browser: true,
},
rules: {
camelcase: 0,
"object-curly-spacing": 0,
quotes: 0,
"array-bracket-spacing": 0,
"no-var": 0,
"object-shorthand": 0,
"arrow-parens": 0,
"no-unused-vars": ["error", { args: "none" }],
},
overrides: [
{
files: ["jest.config.js"],
env: {
browser: false,
node: true,
},
},
{
files: ["**/__mocks__/**", "__tests__/**"],
plugins: ["jest"],
env: {
"jest/globals": true,
},
extends: ["plugin:jest/recommended", "plugin:jest/style"],
},
],
settings: {
"import/resolver": {
alias: [
["@lib", "./lib"],
["@tests", "./__tests__"],
],
node: {
extensions: ["js"],
},
},
},
};