Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. {
  2. "rules": {
  3. "class-name": true,
  4. "comment-format": [
  5. false
  6. ],
  7. "curly": true,
  8. "eofline": false,
  9. "forin": true,
  10. "indent": [
  11. true,
  12. "spaces",
  13. 4
  14. ],
  15. "label-position": true,
  16. "max-line-length": [
  17. true,
  18. 150
  19. ],
  20. "member-access": false,
  21. "no-conditional-assignment": true,
  22. "no-require-imports": false,
  23. "member-ordering": [
  24. true,
  25. {
  26. "order": [
  27. "static-field",
  28. "instance-field",
  29. "constructor",
  30. "public-instance-method",
  31. "protected-instance-method",
  32. "private-instance-method"
  33. ]
  34. }
  35. ],
  36. "no-any": false,
  37. "no-arg": true,
  38. "no-bitwise": true,
  39. "no-magic-numbers": false,
  40. "object-literal-key-quotes": [
  41. false
  42. ],
  43. "object-literal-shorthand": false,
  44. "no-mergeable-namespace": true,
  45. "no-console": [
  46. false,
  47. "debug",
  48. "info",
  49. "time",
  50. "timeEnd",
  51. "trace"
  52. ],
  53. "no-construct": true,
  54. "no-debugger": true,
  55. "no-duplicate-variable": true,
  56. "no-empty": true,
  57. "no-empty-interface": true,
  58. "no-eval": true,
  59. "completed-docs": [
  60. false
  61. ],
  62. "no-inferrable-types": [
  63. true
  64. ],
  65. "no-invalid-this": [
  66. true
  67. ],
  68. "cyclomatic-complexity": [
  69. true,
  70. 20
  71. ],
  72. "no-shadowed-variable": true,
  73. "no-string-literal": false,
  74. "no-switch-case-fall-through": true,
  75. "no-for-in-array": false,
  76. "no-trailing-whitespace": false,
  77. "no-unused-expression": true,
  78. "no-unused-variable": true,
  79. "no-unsafe-finally": true,
  80. "no-unused-new": false,
  81. "no-parameter-properties": false,
  82. "no-use-before-declare": true,
  83. "use-isnan": true,
  84. "switch-default": true,
  85. "jsdoc-format": false,
  86. "no-var-requires": false,
  87. "no-var-keyword": true,
  88. "no-default-export": true,
  89. "restrict-plus-operands": false,
  90. "object-literal-sort-keys": false,
  91. "prefer-for-of": true,
  92. "no-null-keyword": false,
  93. "new-parens": true,
  94. "no-angle-bracket-type-assertion": false,
  95. "no-consecutive-blank-lines": true,
  96. "max-classes-per-file": [
  97. true,
  98. 1
  99. ],
  100. "file-header": [
  101. false
  102. ],
  103. "align": [
  104. true
  105. ],
  106. "array-type": [
  107. false
  108. ],
  109. "interface-name": [
  110. false
  111. ],
  112. "arrow-parens": false,
  113. "one-variable-per-declaration": [
  114. false
  115. ],
  116. "one-line": [
  117. true,
  118. "check-open-brace",
  119. "check-catch",
  120. "check-else",
  121. "check-finally"
  122. ],
  123. "quotemark": [
  124. true,
  125. "single",
  126. "avoid-escape"
  127. ],
  128. "radix": false,
  129. "semicolon": [
  130. true
  131. ],
  132. "trailing-comma": [
  133. false
  134. ],
  135. "triple-equals": [
  136. false
  137. ],
  138. "typedef": [
  139. true
  140. ],
  141. "variable-name": [
  142. true,
  143. "allow-leading-underscore",
  144. "allow-pascal-case"
  145. ],
  146. "whitespace": [
  147. false
  148. ]
  149. }
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement