forked from serverless/serverless-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
48 lines (48 loc) · 1.01 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"jest": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react",
"import",
"jsx-a11y",
],
"rules": {
"max-len": 0,
"no-console": 0,
"arrow-parens": 0,
"class-methods-use-this": 0,
"lines-around-directive": 0,
"jsx-a11y/no-static-element-interactions": 0,
"no-unused-vars": [2, { "argsIgnorePattern": "^_" }],
"import/no-extraneous-dependencies": [2, {
"devDependencies": ["**/graphql/**/*.js", "**/foundation/**/*.js"]
}],
"react/prop-types": 0,
"react/no-unused-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/no-danger": 0,
"react/sort-comp": [2, {
"order": [
"type-annotations",
"static-methods",
"lifecycle",
"/^on.+$/",
"everything-else",
"render"
]
}]
}
}