Last active
February 22, 2019 16:28
-
-
Save Joaquin6/98b30fe84c7084b97461a6a1c714a995 to your computer and use it in GitHub Desktop.
A copy of suitable .jshintrc file at `$HOME` for Mac
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
| { | |
| "asi": false, | |
| "boss": false, | |
| "camelcase": false, | |
| "curly": true, | |
| "eqeqeq": true, | |
| "eqnull": false, | |
| "esversion": 6, | |
| "evil": false, | |
| "expr": false, | |
| "forin": true, | |
| "funcscope": false, | |
| "immed": true, | |
| "indent": 2, | |
| "laxbreak": false, | |
| "laxcomma": false, | |
| "latedef": true, | |
| "loopfunc": false, | |
| "maxerr": 7, | |
| "newcap": true, | |
| "node": true, | |
| "nonew": true, | |
| "plusplus": true, | |
| "regexdash": false, | |
| "shadow": false, | |
| "strict": false, | |
| "sub": false, | |
| "supernew": false, | |
| "trailing": true, | |
| "undef": true, | |
| "unused": true, | |
| "white": true, | |
| "globals": { | |
| "Promise": true, | |
| "Swagger": true, | |
| "Error": true, | |
| "require": true, | |
| "global": true, | |
| "console": true, | |
| "module": true, | |
| "process": true, | |
| "chrome": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment