Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. {
  2. "rulesDirectory": ["node_modules/codelyzer"],
  3. "rules": {
  4. "arrow-return-shorthand": true,
  5. "callable-types": true,
  6. "class-name": true,
  7. "comment-format": [true, "check-space"],
  8. "curly": true,
  9. "eofline": true,
  10. "forin": true,
  11. "import-blacklist": [true],
  12. "import-spacing": true,
  13. "indent": [true, "spaces"],
  14. "interface-over-type-literal": true,
  15. "label-position": true,
  16. "no-duplicate-variable": true,
  17. "no-unused-variable": true,
  18. "max-line-length": false,
  19. "member-access": false,
  20. "member-ordering": [
  21. true,
  22. {
  23. "order": [
  24. "static-field",
  25. "instance-field",
  26. "static-method",
  27. "instance-method"
  28. ]
  29. }
  30. ],
  31. "no-arg": true,
  32. "no-bitwise": true,
  33. "no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
  34. "no-construct": true,
  35. "no-debugger": true,
  36. "no-duplicate-super": true,
  37. "no-empty": false,
  38. "no-empty-interface": true,
  39. "no-eval": true,
  40. "no-inferrable-types": [true, "ignore-params"],
  41. "no-misused-new": true,
  42. "no-non-null-assertion": true,
  43. "no-shadowed-variable": false,
  44. "no-string-literal": false,
  45. "no-string-throw": true,
  46. "no-switch-case-fall-through": true,
  47. "no-trailing-whitespace": false,
  48. "no-unnecessary-initializer": true,
  49. "no-unused-expression": true,
  50. "no-use-before-declare": true,
  51. "no-var-keyword": true,
  52. "no-parameter-reassignment": true,
  53. "object-literal-sort-keys": false,
  54. "one-line": [
  55. true,
  56. "check-open-brace",
  57. "check-catch",
  58. "check-else",
  59. "check-whitespace"
  60. ],
  61. "prefer-const": false,
  62. "quotemark": [false, "single"],
  63. "radix": true,
  64. "semicolon": [true, "always"],
  65. "triple-equals": [false, "allow-null-check"],
  66. "typedef-whitespace": [
  67. true,
  68. {
  69. "call-signature": "nospace",
  70. "index-signature": "nospace",
  71. "parameter": "nospace",
  72. "property-declaration": "nospace",
  73. "variable-declaration": "nospace"
  74. }
  75. ],
  76. "typeof-compare": true,
  77. "unified-signatures": true,
  78. "variable-name": false,
  79. "whitespace": [
  80. false,
  81. "check-branch",
  82. "check-decl",
  83. "check-operator",
  84. "check-separator",
  85. "check-type"
  86. ],
  87. "directive-selector": [true, "attribute", "app", "camelCase"],
  88. "component-selector": [true, "element", "", "kebab-case"],
  89. "use-input-property-decorator": true,
  90. "use-output-property-decorator": true,
  91. "use-host-property-decorator": true,
  92. "no-input-rename": true,
  93. "no-output-rename": true,
  94. "use-life-cycle-interface": true,
  95. "use-pipe-transform-interface": true,
  96. "component-class-suffix": true,
  97. "directive-class-suffix": true,
  98. "no-access-missing-member": true,
  99. "templates-use-public": true,
  100. "invoke-injectable": true
  101. }
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement