Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 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. "component-class-suffix": true,
  9. "component-selector": [true, "element", "kebab-case"],
  10. "curly": true,
  11. "deprecation": { "severity": "warn" },
  12. "directive-class-suffix": true,
  13. "eofline": true,
  14. "forin": true,
  15. "import-blacklist": [true, "rxjs/Rx"],
  16. "import-spacing": true,
  17. "indent": [true, "spaces"],
  18. "interface-over-type-literal": true,
  19. "label-position": true,
  20. "max-line-length": [false, 140],
  21. "member-access": false,
  22. "member-ordering": [
  23. true,
  24. {
  25. "order": [
  26. "static-field",
  27. "instance-field",
  28. "static-method",
  29. "instance-method"
  30. ]
  31. }
  32. ],
  33. "no-arg": true,
  34. "no-bitwise": true,
  35. "no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
  36. "no-construct": true,
  37. "no-debugger": true,
  38. "no-duplicate-super": true,
  39. "no-empty": false,
  40. "no-empty-interface": true,
  41. "no-eval": true,
  42. "no-host-metadata-property": true,
  43. "no-inferrable-types": false,
  44. "no-input-rename": true,
  45. "no-inputs-metadata-property": true,
  46. "no-misused-new": true,
  47. "no-non-null-assertion": true,
  48. "no-output-on-prefix": true,
  49. "no-output-rename": true,
  50. "no-outputs-metadata-property": true,
  51. "no-shadowed-variable": true,
  52. "no-string-literal": false,
  53. "no-string-throw": true,
  54. "no-switch-case-fall-through": true,
  55. "no-trailing-whitespace": true,
  56. "no-unnecessary-initializer": true,
  57. "no-unused-expression": true,
  58. "no-var-keyword": true,
  59. "object-literal-sort-keys": false,
  60. "one-line": false,
  61. "prefer-const": true,
  62. "quotemark": [true, "single"],
  63. "radix": true,
  64. "semicolon": [true, "always"],
  65. "triple-equals": [true, "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. "unified-signatures": true,
  77. "use-life-cycle-interface": true,
  78. "use-lifecycle-interface": true,
  79. "use-pipe-transform-interface": true,
  80. "variable-name": false,
  81. "whitespace": false
  82. }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement