Created
April 8, 2015 13:44
-
-
Save jonathanfmills/bd20d0a2e50f3f949e30 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
| { | |
| "excludeFiles": ["node_modules/**", "bower_components/**"], | |
| "requireCurlyBraces": [ | |
| "if", | |
| "else", | |
| "for", | |
| "while", | |
| "do", | |
| "try", | |
| "catch" | |
| ], | |
| "requireOperatorBeforeLineBreak": true, | |
| "requireCamelCaseOrUpperCaseIdentifiers": true, | |
| "maximumLineLength": { | |
| "value": 100, | |
| "allowComments": true, | |
| "allowRegex": true | |
| }, | |
| "validateIndentation": 4, | |
| "validateQuoteMarks": "'", | |
| "disallowMultipleLineStrings": true, | |
| "disallowMixedSpacesAndTabs": true, | |
| "disallowTrailingWhitespace": true, | |
| "disallowSpaceAfterPrefixUnaryOperators": true, | |
| "disallowMultipleVarDecl": null, | |
| "requireSpaceAfterKeywords": [ | |
| "if", | |
| "else", | |
| "for", | |
| "while", | |
| "do", | |
| "switch", | |
| "return", | |
| "try", | |
| "catch" | |
| ], | |
| "requireSpaceBeforeBinaryOperators": [ | |
| "=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=", | |
| "&=", "|=", "^=", "+=", | |
| "+", "-", "*", "/", "%", "<<", ">>", ">>>", "&", | |
| "|", "^", "&&", "||", "===", "==", ">=", | |
| "<=", "<", ">", "!=", "!==" | |
| ], | |
| "requireSpaceAfterBinaryOperators": true, | |
| "requireSpacesInConditionalExpression": true, | |
| "requireSpaceBeforeBlockStatements": true, | |
| "requireLineFeedAtFileEnd": true, | |
| "disallowSpacesInsideObjectBrackets": "all", | |
| "disallowSpacesInsideArrayBrackets": "all", | |
| "disallowSpacesInsideParentheses": true, | |
| "validateJSDoc": { | |
| "checkParamNames": true, | |
| "requireParamTypes": true | |
| }, | |
| "disallowMultipleLineBreaks": true, | |
| "disallowCommaBeforeLineBreak": null, | |
| "disallowDanglingUnderscores": null, | |
| "disallowEmptyBlocks": null, | |
| "disallowMultipleLineStrings": null, | |
| "disallowTrailingComma": null, | |
| "requireCommaBeforeLineBreak": null, | |
| "requireDotNotation": null, | |
| "requireMultipleVarDecl": null, | |
| "requireParenthesesAroundIIFE": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment