.jscsrc.todo 467 B

12345678910111213141516171819
  1. {
  2. "maximumLineLength": {
  3. "value": 80,
  4. "allowComments": true,
  5. "allowRegex": true
  6. },
  7. "validateIndentation": 2,
  8. "validateQuoteMarks": "'",
  9. "disallowMultipleVarDecl": true,
  10. "disallowSpacesInAnonymousFunctionExpression": {
  11. "beforeOpeningRoundBrace": true
  12. },
  13. "disallowSpacesInsideObjectBrackets": "all",
  14. "disallowSpacesInsideArrayBrackets": "all",
  15. "validateJSDoc": {
  16. "checkParamNames": true,
  17. "requireParamTypes": true
  18. }
  19. }