{ // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc // Documentation: http://www.jshint.com/docs/ "browser": true, "node": true, "strict": false, "esnext": true, "undef": true, "unused": true, "bitwise": true, // Prohibit bitwise operators (&, |, ^, etc.) "curly": true, // Require {} for every new block or scope "freeze": true, // prohibits overwriting prototypes of native objects such as Array, Date etc. "newcap": true, // Require capitalization of all constructor functions e.g. `new F()` "quotmark": "single", "globals": { "helpers":true, "AMD": true, "QUnit": true, "test": true, "config": true } }