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

29 lines
530 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,
"es6": true
},
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,
"react/sort-comp": 0
2016-11-10 14:26:24 +01:00
}
}