UNPKG

time-log

Version:
38 lines (36 loc) 792 B
/** * Check out the default JSHint options at: * https://github.com/jshint/jshint/blob/master/examples/.jshintrc */ { "bitwise": true, "camelcase": true, "curly": true, "eqeqeq": true, "forin": true, "immed": true, // Change `newcap` option later to `true` "newcap": false, "noempty": true, "quotmark": "single", "maxlen": 79, "undef": true, "laxbreak": true, "browser": true, "devel": true, "jquery": true, "node": true, "globals": { "require": true, "define": true, "Zepto": true, "Promise": true, // testing globals "describe": true, "it": true, "before": true, "after": true, "beforeEach": true, "afterEach": true } }