{ // 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, "esnext": true, "globals": { //browser stuff "console" : false, "alert" : false, //require.js "require" : false, "define" : false, //set audio stuff "AudioContext" : true, "AudioBufferSourceNode" : false, "OscillatorNode" : false, "DelayNode" : false, "GainNode" : false, "AudioNode" : false, "AudioParam" : false, "WaveShaperNode" : false, "DynamicsCompressorNode" : false //mocha stuff "mocha" : false, "describe" : false, "it" : false, "before" : false, "beforeEach" : false, "after" : false, "afterEach" : false }, "node": true, "jquery" : true, "globalstrict": false, "quotmark": true, "smarttabs": true, "trailing": true, "undef": true, "unused": true }