1234567891011121314151617181920212223242526272829 |
- {
- "node": true,
- "esnext": true,
- "bitwise": true,
- "curly": true,
- "eqeqeq": true,
- "eqnull": true,
- "immed": true,
- "latedef": "nofunc",
- "newcap": false,
- "noarg": true,
- "undef": true,
- "strict": false,
- "trailing": true,
- "smarttabs": true,
- "indent": 2,
- "white": false,
- "quotmark": "single",
- "laxbreak": true,
- "globals" : {
- /* MOCHA */
- "describe" : false,
- "it" : false,
- "before" : false,
- "beforeEach" : false,
- "after" : false,
- "afterEach" : false
- }
- }
|