{ // 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, "asi": true, // accept missing semicolons "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()` "globals": { "helpers": true, "Core": true, "NMD": true, "NMD_PLUGINS": true, "AMD": true } }