Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

39 linhas
1.1 KiB

há 7 anos
há 7 anos
há 7 anos
  1. {
  2. "editor.insertSpaces": true,
  3. "files.exclude": {
  4. "**/node_modules": true,
  5. "**/out": true
  6. },
  7. "files.trimTrailingWhitespace": true,
  8. "search.exclude": {
  9. "**/node_modules": true,
  10. "**/out": true
  11. },
  12. "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
  13. "postcssSorting.config": {
  14. "order": [
  15. "custom-properties",
  16. "dollar-variables",
  17. "declarations",
  18. "at-rules",
  19. "rules"
  20. ],
  21. "properties-order": "alphabetical",
  22. "unspecified-properties-position": "bottom"
  23. },
  24. "tslint.autoFixOnSave": [
  25. "curly",
  26. "eofline",
  27. "linebreak-style",
  28. "trailing-comma",
  29. "no-consecutive-blank-lines",
  30. "no-irregular-whitespace",
  31. "object-literal-key-quotes",
  32. "one-line",
  33. "ordered-imports",
  34. "prefer-method-signature",
  35. "prettiest",
  36. "quotemark",
  37. "whitespace"
  38. ],
  39. "typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
  40. }