Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. {
  2. "rules": {
  3. "class-name": true,
  4. "comment-format": [
  5. true,
  6. "check-space"
  7. ],
  8. "indent": [
  9. true,
  10. "spaces"
  11. ],
  12. "one-line": [
  13. true,
  14. "check-open-brace",
  15. "check-whitespace"
  16. ],
  17. "no-var-keyword": true,
  18. "quotemark": [
  19. true,
  20. "single",
  21. "avoid-escape"
  22. ],
  23. "semicolon": [
  24. true,
  25. "always",
  26. "ignore-bound-class-methods"
  27. ],
  28. "whitespace": [
  29. true,
  30. "check-branch",
  31. "check-decl",
  32. "check-operator",
  33. "check-module",
  34. "check-separator",
  35. "check-type"
  36. ],
  37. "typedef-whitespace": [
  38. true,
  39. {
  40. "call-signature": "nospace",
  41. "index-signature": "nospace",
  42. "parameter": "nospace",
  43. "property-declaration": "nospace",
  44. "variable-declaration": "nospace"
  45. },
  46. {
  47. "call-signature": "onespace",
  48. "index-signature": "onespace",
  49. "parameter": "onespace",
  50. "property-declaration": "onespace",
  51. "variable-declaration": "onespace"
  52. }
  53. ],
  54. "no-internal-module": true,
  55. "no-trailing-whitespace": true,
  56. "no-null-keyword": true,
  57. "prefer-const": true,
  58. "jsdoc-format": true
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement