UNPKG

363 BPlain TextView Raw
1{
2 "extends": "loopback",
3 "rules": {
4 "max-len": ["error", 90, 4, {
5 "ignoreComments": true,
6 "ignoreUrls": true,
7 "ignorePattern": "^\\s*var\\s.+=\\s*(require\\s*\\()|(/)"
8 }],
9 // NOTE we should eventually remove this override
10 // and fix all of those 100+ violations
11 "one-var": "off",
12 "no-unused-expressions": "off"
13 }
14}