eslint-config-uber-es2015
Version:
The base es2015 eslint config for web JavaScript at Uber
30 lines (29 loc) • 515 B
JSON
{
"rules": {
"no-continue": 2,
"func-style": [
2,
"declaration",
{
"allowArrowFunctions": true
}
],
"lines-around-comment": [
0,
{
"beforeBlockComment": true,
"afterBlockComment": false,
"beforeLineComment": false,
"afterLineComment": false,
"allowBlockStart": true,
"allowBlockEnd": true
}
],
"quote-props": [
2,
"as-needed"
],
"sort-vars": 2,
"wrap-regex": 2
}
}