loopback-datasource-juggler/.eslintrc

14 lines
363 B
Plaintext
Raw Permalink Normal View History

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