1+ {
2+ "extends": "airbnb-base",
3+ "env": {
4+ "jasmine": true,
5+ "node": true,
6+ "browser": true
7+ },
8+ "globals": {
9+ "spyOn": true,
10+ "app": true,
11+ "helpers": true
12+ },
13+ "rules": {
14+ "brace-style": ["error", "stroustrup"],
15+ "comma-dangle": ["error", "never"],
16+ "func-names": 0,
17+ "indent": ["error", 4, { "SwitchCase": 1 }],
18+ "max-len": [2, 180, 4, {
19+ "ignoreUrls": true,
20+ "ignoreComments": false
21+ }],
22+ "new-cap": ["error", {"capIsNewExceptions": ["Router", "ObjectId", "DEBUG"], "properties": false}],
23+ "no-underscore-dangle": 0,
24+ "no-unused-vars": ["warn"],
25+ "no-use-before-define": ["error", { "functions": false }],
26+ "no-var": ["off"],
27+ "one-var": ["off"],
28+ "vars-on-top": ["off"],
29+ "no-param-reassign": ["off"],
30+ "padded-blocks": 0,
31+ "prefer-template": ["off"],
32+ "prefer-arrow-callback": ["off"],
33+ "require-jsdoc": ["warn", {
34+ "require": {
35+ "FunctionDeclaration": true,
36+ "MethodDefinition": true,
37+ "ClassDeclaration": true
38+ }
39+ }],
40+ "object-shorthand": ["error", "never"],
41+ "space-before-function-paren": "off",
42+ "strict": "off",
43+ "valid-jsdoc": ["error"]
44+ }
45+ }
0 commit comments