Tone.js/.jshintrc

40 lines
985 B
Text
Raw Normal View History

2014-06-18 18:02:08 +00:00
{
// 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
"AudioBufferSourceNode" : false,
"OscillatorNode" : false,
"GainNode" : false,
"AudioNode" : false,
"AudioParam" : false,
"WaveShaperNode" : false,
2014-06-18 19:39:10 +00:00
"DynamicsCompressorNode" : false
2014-06-18 18:02:08 +00:00
//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
}