Guest User

Untitled

a guest
May 24th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 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. "deprecation": {
  8. "severity": "warn"
  9. },
  10. "forin": true,
  11. "import-blacklist": [true, "rxjs", "rxjs/Rx"],
  12. "interface-over-type-literal": true,
  13. "label-position": true,
  14. "member-access": false,
  15. "member-ordering": [
  16. true,
  17. {
  18. "order": ["static-field", "instance-field", "static-method", "instance-method"]
  19. }
  20. ],
  21. "no-arg": true,
  22. "no-bitwise": true,
  23. "no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
  24. "no-construct": true,
  25. "no-debugger": true,
  26. "no-duplicate-super": true,
  27. "no-empty": false,
  28. "no-empty-interface": true,
  29. "no-eval": true,
  30. "no-inferrable-types": [true, "ignore-params"],
  31. "no-misused-new": true,
  32. "no-non-null-assertion": true,
  33. "no-shadowed-variable": true,
  34. "no-string-literal": false,
  35. "no-string-throw": true,
  36. "no-switch-case-fall-through": true,
  37. "no-unnecessary-initializer": true,
  38. "no-unused-expression": true,
  39. "no-use-before-declare": true,
  40. "no-var-keyword": true,
  41. "object-literal-sort-keys": false,
  42. "prefer-const": true,
  43. "radix": true,
  44. "triple-equals": [true, "allow-null-check"],
  45. "unified-signatures": true,
  46. "variable-name": false,
  47. "directive-selector": [true, "attribute", "app", "camelCase"],
  48. "component-selector": [true, "element", "app", "kebab-case"],
  49. "no-output-on-prefix": true,
  50. "use-input-property-decorator": true,
  51. "use-output-property-decorator": true,
  52. "use-host-property-decorator": true,
  53. "no-input-rename": true,
  54. "no-output-rename": true,
  55. "use-life-cycle-interface": true,
  56. "use-pipe-transform-interface": true,
  57. "component-class-suffix": true,
  58. "directive-class-suffix": true
  59. }
  60. }
Add Comment
Please, Sign In to add comment