loopback-component-storage/.eslintrc

15 lines
363 B
Plaintext
Raw Normal View History

2016-10-18 21:45:55 +00:00
{
2016-10-18 22:48:59 +00:00
"extends": "loopback",
"rules": {
"max-len": ["error", 90, 4, {
"ignoreComments": true,
"ignoreUrls": true,
"ignorePattern": "^\\s*var\\s.+=\\s*(require\\s*\\()|(/)"
}],
// NOTE we should eventually remove this override
// and fix all of those 100+ violations
"one-var": "off",
"no-unused-expressions": "off"
}
}