You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1003 B

7 years ago
7 years ago
  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. "postcssSorting.config": {
  13. "order": ["custom-properties", "dollar-variables", "declarations", "at-rules", "rules"],
  14. "properties-order": "alphabetical",
  15. "unspecified-properties-position": "bottom"
  16. },
  17. "tslint.autoFixOnSave": [
  18. "curly",
  19. "eofline",
  20. "linebreak-style",
  21. "trailing-comma",
  22. "no-consecutive-blank-lines",
  23. "no-irregular-whitespace",
  24. "object-literal-key-quotes",
  25. "one-line",
  26. "ordered-imports",
  27. "prefer-method-signature",
  28. "prettiest",
  29. "quotemark",
  30. "whitespace"
  31. ],
  32. "typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
  33. }