mirror of https://github.com/twbs/ratchet.git
XhmikosR
11 years ago
3 changed files with 40 additions and 1 deletions
@ -0,0 +1,23 @@
|
||||
{ |
||||
"disallowEmptyBlocks": true, |
||||
"disallowKeywords": ["with"], |
||||
"disallowLeftStickedOperators": ["?", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
||||
"disallowMixedSpacesAndTabs": true, |
||||
"disallowMultipleLineStrings": true, |
||||
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
||||
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], |
||||
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], |
||||
"disallowTrailingWhitespace": true, |
||||
"requireCamelCaseOrUpperCaseIdentifiers": true, |
||||
"requireLeftStickedOperators": [","], |
||||
"requireLineFeedAtFileEnd": true, |
||||
"requireParenthesesAroundIIFE": true, |
||||
"requireRightStickedOperators": ["!"], |
||||
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="], |
||||
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"], |
||||
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="], |
||||
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true }, |
||||
"validateIndentation": 2, |
||||
"validateLineBreaks": "LF", |
||||
"validateQuoteMarks": "'" |
||||
} |
Loading…
Reference in new issue