-
-
Save carlosescri/5848477 to your computer and use it in GitHub Desktop.
SublimeLinter User Config (from Paul Irish)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"// my options for SublimeLinter " : "//", | |
"jshint_options" : { | |
"boss": true, | |
"browser": true, | |
"curly": false, | |
"devel": true, | |
"eqeqeq": false, | |
"eqnull": true, | |
"expr": true, | |
"evil": true, | |
"immed": false, | |
"laxcomma": true, | |
"newcap": false, | |
"noarg": true, | |
"smarttabs": true, | |
"sub": true, | |
"undef": true, | |
"// predefined globals " : "//", | |
"predef" : [ | |
"_", | |
"__dirname", | |
"require", | |
"jasmine", | |
"describe", | |
"xdescribe", | |
"it", | |
"xit", | |
"beforeEach", | |
"afterEach", | |
"expect", | |
"spyOn", | |
"runs", | |
"waits", | |
"waitsFor", | |
"Benchmark", | |
"Raphael", | |
"Backbone", | |
"Modernizr", | |
"Ext", | |
"_gaq" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment