Created
September 23, 2015 12:39
-
-
Save aguimaraes/04036f07a1e6c9b7c917 to your computer and use it in GitHub Desktop.
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
Show hidden characters
| { | |
| // an array of options to pass to jslint. | |
| "options" : [ | |
| // examples using predef flag. | |
| "--predef", "['angular', 'document', '\\$', '_', 'JQuery', 'FB', 'Ext', 'S1', 'console']" | |
| // tolerate missing 'use strict' pragma. | |
| ,"--sloppy" | |
| // suggest an indent level of two spaces. | |
| ,"--indent", "4" | |
| ,"--unparam", "true" | |
| // tolerate ++ and --. | |
| ,"--plusplus" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment