updeep-remeda/.eslintrc

32 lines
612 B
Plaintext
Raw Normal View History

2015-07-31 15:53:25 +00:00
{
2017-04-19 00:55:46 +00:00
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
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": {
2017-04-19 00:55:46 +00:00
"prettier/prettier": [
"error",
{
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
],
2017-04-19 00:47:53 +00:00
"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
}