forked from marmelab/json-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 759 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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"mocha": true,
"node": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": ["prettier", "jest"],
"rules": {
"prettier/prettier": ["error"],
"import/no-extraneous-dependencies": "off",
"no-console": [
"error",
{
"allow": ["warn", "error"]
}
],
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true
}
]
}
}