1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/frontend/src/.eslintrc

38 lines
760 B
Plaintext
Raw Normal View History

2016-11-10 14:26:24 +01:00
{
"parser": "babel-eslint",
"extends": [
"finn",
"finn-react",
"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": {
"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
}
}