2018-04-07 14:18:06 +02:00
|
|
|
{
|
2018-04-09 19:43:51 +02:00
|
|
|
"plugins": ["react", "graphql", "compat"],
|
2018-04-07 14:18:06 +02:00
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true,
|
|
|
|
"modules": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2018-04-08 22:49:58 +02:00
|
|
|
"node": true,
|
|
|
|
"es6": true
|
2018-04-07 14:18:06 +02:00
|
|
|
},
|
2018-04-08 00:19:54 +02:00
|
|
|
"globals": {
|
|
|
|
"graphql": true
|
|
|
|
},
|
2018-04-07 14:18:06 +02:00
|
|
|
"extends": ["eslint:recommended", "plugin:react/recommended"],
|
|
|
|
"rules": {
|
|
|
|
"quotes": ["error", "single"],
|
2018-04-09 19:43:51 +02:00
|
|
|
"semi": ["error", "never"],
|
|
|
|
"compat/compat": "error"
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"polyfills": ["promises"]
|
2018-04-07 14:18:06 +02:00
|
|
|
}
|
|
|
|
}
|