Last active
December 5, 2015 23:38
-
-
Save sanusart/ad524d949c686d5862e4 to your computer and use it in GitHub Desktop.
jscs settings #jscs #lint
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
| { | |
| "preset": "google", | |
| "validateLineBreaks": "LF", | |
| "validateIndentation": 2, | |
| "requireCurlyBraces": true, | |
| "requireSemicolons": true, | |
| "maximumLineLength": false, | |
| "disallowTrailingComma": true, | |
| "disallowTrailingWhitespace": true, | |
| "validateParameterSeparator": ", ", | |
| "requireLineFeedAtFileEnd": true, | |
| "disallowMultipleLineBreaks": true, | |
| "requireCamelCaseOrUpperCaseIdentifiers": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment