the-utils
Version:
Set of tools to keep simple things simple
47 lines (46 loc) • 756 B
JSON
{
"parser": "babel-eslint",
"extends": [
"airbnb-base",
"plugin:jest/recommended"
],
"plugins": [
"babel",
"promise",
"jest"
],
"env": {
"browser": false,
"jest/globals": true
},
"globals": {},
"rules": {
"no-unused-expressions": 0,
"semi": [
2,
"never"
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
],
"max-len": [
2,
120,
2
],
"generator-star-spacing": 1,
"no-confusing-arrow": [
"error",
{
"allowParens": true
}
]
}
}