123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "node": true,
- "esnext": true,
- "bitwise": true,
- "camelcase": true,
- "curly": true,
- "eqeqeq": true,
- "immed": true,
- "indent": 4,
- "latedef": true,
- "newcap": true,
- "noarg": true,
- "quotmark": "single",
- "maxcomplexity": 10,
- "regexp": true,
- "undef": true,
- "unused": true,
- "strict": true,
- "trailing": true,
- "smarttabs": true,
- "jquery": true,
- "white": true,
- "globals": {
- "_": true,
- "$": true,
- "angular": true,
- "describe": true,
- "beforeEach": true,
- "afterEach" : true,
- "before": true,
- "after" : true,
- "it": true,
- "expect": true,
- "inject": true,
- "alert": true,
- "require": true,
- "SRS4": true
- }
- }
|