Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

.jscs.json 580B

123456789101112131415161718192021222324
  1. {
  2. "disallowMixedSpacesAndTabs": true,
  3. "disallowTrailingWhitespace": true,
  4. "validateLineBreaks": "LF",
  5. "validateIndentation": 4,
  6. "requireLineFeedAtFileEnd": true,
  7. "disallowSpaceAfterPrefixUnaryOperators": true,
  8. "disallowSpaceBeforePostfixUnaryOperators": true,
  9. "requireSpaceAfterLineComment": true,
  10. "requireCapitalizedConstructors": true,
  11. "disallowSpacesInNamedFunctionExpression": {
  12. "beforeOpeningRoundBrace": true
  13. },
  14. "requireSpaceAfterKeywords": [
  15. "if",
  16. "else",
  17. "for",
  18. "while",
  19. "do"
  20. ]
  21. }