Created
July 4, 2016 19:57
-
-
Save phensalves/f82b7f4ea1a225fab39f41d9b313ee6e to your computer and use it in GitHub Desktop.
This file contains 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": false, | |
"maximumLineLength": { | |
"value": 400, | |
"allowComments": true, | |
"allowRegex": true | |
}, | |
"disallowMultipleLineStrings": true, | |
"disallowMixedSpacesAndTabs": true, | |
"disallowTrailingWhitespace": false, | |
"disallowSpaceAfterPrefixUnaryOperators": true, | |
"disallowMultipleVarDecl": null, | |
"requireSpaceAfterKeywords": [ | |
"if", | |
"else", | |
"for", | |
"while", | |
"do", | |
"switch", | |
"return", | |
"try", | |
"catch" | |
], | |
"requireSpaceAfterBinaryOperators": true, | |
"requireSpacesInConditionalExpression": true, | |
"requireSpaceBeforeBlockStatements": true, | |
"requireLineFeedAtFileEnd": false, | |
"disallowSpacesInsideObjectBrackets": "all", | |
"disallowSpacesInsideArrayBrackets": "all", | |
"disallowSpacesInsideParentheses": true, | |
"jsDoc": { | |
"checkAnnotations": true, | |
"checkParamNames": true, | |
"requireParamTypes": true, | |
"checkReturnTypes": true, | |
"checkTypes": true | |
}, | |
"disallowMultipleLineBreaks": true, | |
"disallowCommaBeforeLineBreak": null, | |
"disallowDanglingUnderscores": null, | |
"disallowEmptyBlocks": 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