Inegrate calendi in meeting Schedule
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
2.6 KiB

  1. {
  2. "rulesDirectory": [
  3. "node_modules/codelyzer"
  4. ],
  5. "rules": {
  6. "callable-types": true,
  7. "class-name": true,
  8. "comment-format": [
  9. true,
  10. "check-space"
  11. ],
  12. "curly": true,
  13. "eofline": true,
  14. "forin": true,
  15. "deprecation": {
  16. "severity": "warning"
  17. },
  18. "import-blacklist": [
  19. true
  20. ],
  21. "import-spacing": true,
  22. "indent": [
  23. true,
  24. "spaces"
  25. ],
  26. "interface-over-type-literal": true,
  27. "label-position": true,
  28. "max-line-length": [
  29. true,
  30. 140
  31. ],
  32. "member-access": false,
  33. "member-ordering": [
  34. true,
  35. {
  36. "order": "statics-first"
  37. }
  38. ],
  39. "no-arg": true,
  40. "no-bitwise": true,
  41. "no-console": [
  42. true,
  43. "debug",
  44. "info",
  45. "time",
  46. "timeEnd",
  47. "trace"
  48. ],
  49. "no-construct": true,
  50. "no-debugger": true,
  51. "no-duplicate-variable": true,
  52. "no-empty": false,
  53. "no-empty-interface": true,
  54. "no-eval": true,
  55. "no-inferrable-types": true,
  56. "no-shadowed-variable": true,
  57. "no-string-literal": false,
  58. "no-string-throw": true,
  59. "no-switch-case-fall-through": true,
  60. "no-trailing-whitespace": true,
  61. "no-unused-expression": true,
  62. "no-var-keyword": true,
  63. "object-literal-sort-keys": false,
  64. "one-line": [
  65. true,
  66. "check-open-brace",
  67. "check-catch",
  68. "check-else",
  69. "check-whitespace"
  70. ],
  71. "prefer-const": true,
  72. "quotemark": [
  73. true,
  74. "single"
  75. ],
  76. "radix": true,
  77. "semicolon": [
  78. true,
  79. "always"
  80. ],
  81. "triple-equals": [
  82. true,
  83. "allow-null-check"
  84. ],
  85. "typedef-whitespace": [
  86. true,
  87. {
  88. "call-signature": "nospace",
  89. "index-signature": "nospace",
  90. "parameter": "nospace",
  91. "property-declaration": "nospace",
  92. "variable-declaration": "nospace"
  93. }
  94. ],
  95. "unified-signatures": true,
  96. "variable-name": false,
  97. "whitespace": [
  98. true,
  99. "check-branch",
  100. "check-decl",
  101. "check-operator",
  102. "check-separator",
  103. "check-type"
  104. ],
  105. "directive-selector": [
  106. true,
  107. "attribute",
  108. "",
  109. "camelCase"
  110. ],
  111. "component-selector": [
  112. true,
  113. "element",
  114. "",
  115. "kebab-case"
  116. ],
  117. "no-inputs-metadata-property": true,
  118. "no-outputs-metadata-property": true,
  119. "no-host-metadata-property": true,
  120. "no-input-rename": true,
  121. "no-output-rename": true,
  122. "use-lifecycle-interface": true,
  123. "use-pipe-transform-interface": true,
  124. "component-class-suffix": true,
  125. "directive-class-suffix": true
  126. }
  127. }