Created
May 19, 2015 03:12
-
-
Save BigHeadCreations/7f5565fb89dd816dac1e to your computer and use it in GitHub Desktop.
my .jshintrc
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
| { | |
| // enforcing options | |
| "nonew" : true, | |
| "curly" : true, | |
| "noarg" : true, | |
| "forin" : true, | |
| "eqeqeq" : true, | |
| "strict" : true, | |
| "undef" : true, | |
| "bitwise" : true, | |
| // relaxing options | |
| "globalstrict" : true, | |
| // environments | |
| "browser" : true, | |
| "devel" : true, | |
| "jquery" : true, | |
| // globals | |
| "globals" : {"angular" : true} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment