updeep-remeda/.eslintrc

17 lines
371 B
Plaintext
Raw Normal View History

2015-07-31 15:53:25 +00:00
{
2017-04-19 00:47:53 +00:00
"extends": "airbnb-base",
2015-07-31 15:53:25 +00:00
"ecmaFeatures": {
2017-04-19 00:47:53 +00:00
"experimentalObjectRestSpread": true
2015-07-31 15:53:25 +00:00
},
2017-04-19 00:47:53 +00:00
"rules": {
"no-confusing-arrow": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}]
}
2015-07-31 15:53:25 +00:00
}