1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-28 00:27:40 +02:00
portfolio/.eslintrc

34 lines
633 B
Plaintext
Raw Normal View History

2018-04-07 14:18:06 +02:00
{
2018-05-12 22:14:53 +02:00
"parser": "babel-eslint",
2018-05-04 19:42:17 +02:00
"extends": [
"eslint:recommended",
2018-05-12 22:14:53 +02:00
"plugin:react/recommended",
2018-05-14 22:30:18 +02:00
"plugin:prettier/recommended"
2018-05-04 19:42:17 +02:00
],
2018-05-22 22:51:41 +02:00
"plugins": ["react", "graphql", "prettier"],
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,
2019-04-14 03:29:35 +02:00
"es6": true,
"jest": true
2018-04-07 14:18:06 +02:00
},
2018-05-12 22:14:53 +02:00
"rules": {
"quotes": ["error", "single"],
"semi": ["error", "never"],
2018-05-14 22:30:18 +02:00
"object-curly-spacing": ["error", "always"],
2018-05-22 22:51:41 +02:00
"prettier/prettier": "error"
},
"settings": {
"react": {
"version": "16"
}
2018-04-07 14:18:06 +02:00
}
}