2016-11-10 14:26:24 +01:00
|
|
|
{
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"extends": [
|
|
|
|
"finn",
|
|
|
|
"finn-react",
|
2017-08-28 19:15:47 +02:00
|
|
|
"finn/es-modules",
|
|
|
|
"finn-prettier",
|
|
|
|
"finn-prettier/react"
|
2016-11-10 14:26:24 +01:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true,
|
2017-08-28 21:40:44 +02:00
|
|
|
"es6": true
|
2016-11-10 14:26:24 +01:00
|
|
|
},
|
2017-01-06 11:52:44 +01:00
|
|
|
"globals": {
|
|
|
|
"process": false
|
|
|
|
},
|
2016-11-10 14:26:24 +01:00
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 7,
|
|
|
|
"ecmaFeatures": {
|
2017-08-28 19:15:47 +02:00
|
|
|
"experimentalObjectRestSpread": true
|
2016-11-10 14:26:24 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"rules": {
|
2016-12-17 13:46:17 +01:00
|
|
|
"no-shadow": 0,
|
2017-08-28 21:40:44 +02:00
|
|
|
"react/sort-comp": 0,
|
|
|
|
"prettier/prettier": [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"tabWidth": 4,
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"printWidth": 120
|
|
|
|
}
|
|
|
|
]
|
2016-11-10 14:26:24 +01:00
|
|
|
}
|
|
|
|
}
|