123456789101112131415161718192021222324252627282930313233343536 |
- {
- "predef": [
- "module",
- "require",
- "__dirname",
- "process",
- "console",
- "it",
- "describe",
- "before",
- "after"
- ],
- "node" : true,
- "es5": true,
- "bitwise": true,
- "curly": true,
- "eqeqeq": true,
- "forin": false,
- "immed": true,
- "latedef": true,
- "newcap": true,
- "noarg": true,
- "noempty": true,
- "nonew": true,
- "plusplus": false,
- "undef": true,
- "strict": false,
- "trailing": false,
- "globalstrict": true,
- "nonstandard": true,
- "white": true,
- "indent": 2,
- "expr": true,
- "onevar": false
- }
|