Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. {
  2. "extends": "tslint-config-standard",
  3. "rules": {
  4. "indent": [
  5. true,
  6. "spaces",
  7. 2
  8. ],
  9. "semicolon": [
  10. true,
  11. "never"
  12. ],
  13. "no-console": [
  14. true
  15. ],
  16. "trailing-comma": [
  17. true,
  18. {
  19. "multiline": {
  20. "arrays": "always",
  21. "exports": "always",
  22. "functions": "always",
  23. "imports": "always",
  24. "objects": "always",
  25. "typeLiterals": "always"
  26. },
  27. "singleline":{
  28. "arrays": "always",
  29. "exports": "always",
  30. "functions": "never",
  31. "imports": "always",
  32. "objects": "always",
  33. "typeLiterals": "always"
  34. },
  35. "esSpecCompliant": true
  36. }
  37. ],
  38. "space-before-function-paren": [
  39. true,
  40. "never"
  41. ],
  42. "no-trailing-whitespace": false,
  43. "typedef-whitespace": [
  44. false,
  45. {
  46. "call-signature": "nospace",
  47. "index-signature": "nospace",
  48. "parameter": "nospace"
  49. }
  50. ],
  51. "await-promise": false,
  52. "deprecation": false,
  53. "no-floating-promises": false,
  54. "no-unnecessary-qualifier": false,
  55. "no-unnecessary-type-assertion": false,
  56. "strict-type-predicates": false
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement