1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/.eslintrc

28 lines
512 B
Plaintext
Raw Normal View History

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
}
}