@codeperfect/eslint-config 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/README.md +21 -3
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/codeperfect-eslint-config-1.0.0.tgz +0 -0
  4. package/dist/domain/config-composition.d.ts +8 -0
  5. package/dist/domain/config-composition.d.ts.map +1 -0
  6. package/dist/domain/config-composition.js +55 -0
  7. package/dist/domain/index.d.ts +3 -1
  8. package/dist/domain/index.d.ts.map +1 -1
  9. package/dist/domain/index.js +3 -2
  10. package/dist/{module-taxonomy.d.ts → domain/module-taxonomy.d.ts} +3 -3
  11. package/dist/domain/module-taxonomy.d.ts.map +1 -0
  12. package/dist/domain/module-taxonomy.js +22 -0
  13. package/dist/{types.d.ts → domain/types.d.ts} +31 -6
  14. package/dist/domain/types.d.ts.map +1 -0
  15. package/dist/domain/types.js +2 -0
  16. package/dist/index.d.ts +2 -2
  17. package/dist/index.d.ts.map +1 -1
  18. package/dist/index.js +2 -2
  19. package/dist/infrastructure/architecture/boundaries.d.ts +22 -0
  20. package/dist/infrastructure/architecture/boundaries.d.ts.map +1 -0
  21. package/dist/infrastructure/architecture/boundaries.js +175 -0
  22. package/dist/infrastructure/architecture/import-x.d.ts.map +1 -0
  23. package/dist/infrastructure/architecture/import-x.js +80 -0
  24. package/dist/infrastructure/architecture/index.d.ts +3 -0
  25. package/dist/infrastructure/architecture/index.d.ts.map +1 -0
  26. package/dist/infrastructure/architecture/index.js +3 -0
  27. package/dist/{config-factory.d.ts → infrastructure/config-factory.d.ts} +1 -1
  28. package/dist/infrastructure/config-factory.d.ts.map +1 -0
  29. package/dist/infrastructure/config-factory.js +44 -0
  30. package/dist/infrastructure/configs/index.d.ts +7 -0
  31. package/dist/infrastructure/configs/index.d.ts.map +1 -0
  32. package/dist/infrastructure/configs/index.js +7 -0
  33. package/dist/infrastructure/core/codeperfect.d.ts.map +1 -0
  34. package/dist/infrastructure/core/codeperfect.js +14 -0
  35. package/dist/infrastructure/core/eslint.d.ts.map +1 -0
  36. package/dist/infrastructure/core/eslint.js +58 -0
  37. package/dist/infrastructure/core/index.d.ts +5 -0
  38. package/dist/infrastructure/core/index.d.ts.map +1 -0
  39. package/dist/infrastructure/core/index.js +5 -0
  40. package/dist/infrastructure/core/resolver.d.ts.map +1 -0
  41. package/dist/infrastructure/core/resolver.js +27 -0
  42. package/dist/infrastructure/core/typescript.d.ts.map +1 -0
  43. package/dist/infrastructure/core/typescript.js +63 -0
  44. package/dist/{diagnostics.d.ts → infrastructure/diagnostics.d.ts} +13 -3
  45. package/dist/infrastructure/diagnostics.d.ts.map +1 -0
  46. package/dist/infrastructure/diagnostics.js +90 -0
  47. package/dist/infrastructure/docs/comments.d.ts.map +1 -0
  48. package/dist/infrastructure/docs/comments.js +30 -0
  49. package/dist/infrastructure/docs/index.d.ts +3 -0
  50. package/dist/infrastructure/docs/index.d.ts.map +1 -0
  51. package/dist/infrastructure/docs/index.js +3 -0
  52. package/dist/infrastructure/docs/jsdoc.d.ts.map +1 -0
  53. package/dist/infrastructure/docs/jsdoc.js +126 -0
  54. package/dist/infrastructure/index.d.ts +5 -0
  55. package/dist/infrastructure/index.d.ts.map +1 -0
  56. package/dist/infrastructure/index.js +4 -0
  57. package/dist/{plugin-loaders.d.ts → infrastructure/plugin-loaders.d.ts} +2 -2
  58. package/dist/infrastructure/plugin-loaders.d.ts.map +1 -0
  59. package/dist/infrastructure/plugin-loaders.js +115 -0
  60. package/dist/infrastructure/plugin-state.d.ts +26 -0
  61. package/dist/infrastructure/plugin-state.d.ts.map +1 -0
  62. package/dist/infrastructure/plugin-state.js +54 -0
  63. package/dist/infrastructure/rxjs-x.d.ts.map +1 -0
  64. package/dist/infrastructure/rxjs-x.js +27 -0
  65. package/dist/infrastructure/style/index.d.ts +5 -0
  66. package/dist/infrastructure/style/index.d.ts.map +1 -0
  67. package/dist/infrastructure/style/index.js +5 -0
  68. package/dist/infrastructure/style/perfectionist.d.ts.map +1 -0
  69. package/dist/infrastructure/style/perfectionist.js +31 -0
  70. package/dist/infrastructure/style/prettier.d.ts.map +1 -0
  71. package/dist/infrastructure/style/prettier.js +15 -0
  72. package/dist/infrastructure/style/stylistic.d.ts.map +1 -0
  73. package/dist/infrastructure/style/stylistic.js +17 -0
  74. package/dist/infrastructure/style/unicorn.d.ts.map +1 -0
  75. package/dist/infrastructure/style/unicorn.js +15 -0
  76. package/dist/infrastructure/testing/index.d.ts +5 -0
  77. package/dist/infrastructure/testing/index.d.ts.map +1 -0
  78. package/dist/infrastructure/testing/index.js +5 -0
  79. package/dist/infrastructure/testing/jasmine.d.ts.map +1 -0
  80. package/dist/infrastructure/testing/jasmine.js +26 -0
  81. package/dist/infrastructure/testing/jest.d.ts.map +1 -0
  82. package/dist/infrastructure/testing/jest.js +27 -0
  83. package/dist/infrastructure/testing/playwright.d.ts.map +1 -0
  84. package/dist/infrastructure/testing/playwright.js +29 -0
  85. package/dist/infrastructure/testing/vitest.d.ts.map +1 -0
  86. package/dist/infrastructure/testing/vitest.js +33 -0
  87. package/dist/{utilities.d.ts → infrastructure/utilities.d.ts} +2 -13
  88. package/dist/infrastructure/utilities.d.ts.map +1 -0
  89. package/dist/infrastructure/utilities.js +112 -0
  90. package/package.json +6 -4
  91. package/dist/architecture/boundaries.d.ts +0 -17
  92. package/dist/architecture/boundaries.d.ts.map +0 -1
  93. package/dist/architecture/boundaries.js +0 -69
  94. package/dist/architecture/import-x.d.ts.map +0 -1
  95. package/dist/architecture/import-x.js +0 -80
  96. package/dist/architecture/index.d.ts +0 -3
  97. package/dist/architecture/index.d.ts.map +0 -1
  98. package/dist/architecture/index.js +0 -3
  99. package/dist/config-composition.d.ts +0 -6
  100. package/dist/config-composition.d.ts.map +0 -1
  101. package/dist/config-composition.js +0 -39
  102. package/dist/config-factory.d.ts.map +0 -1
  103. package/dist/config-factory.js +0 -42
  104. package/dist/configs/index.d.ts +0 -7
  105. package/dist/configs/index.d.ts.map +0 -1
  106. package/dist/configs/index.js +0 -7
  107. package/dist/core/codeperfect.d.ts.map +0 -1
  108. package/dist/core/codeperfect.js +0 -14
  109. package/dist/core/eslint.d.ts.map +0 -1
  110. package/dist/core/eslint.js +0 -58
  111. package/dist/core/index.d.ts +0 -5
  112. package/dist/core/index.d.ts.map +0 -1
  113. package/dist/core/index.js +0 -5
  114. package/dist/core/resolver.d.ts.map +0 -1
  115. package/dist/core/resolver.js +0 -27
  116. package/dist/core/typescript.d.ts.map +0 -1
  117. package/dist/core/typescript.js +0 -63
  118. package/dist/diagnostics.d.ts.map +0 -1
  119. package/dist/diagnostics.js +0 -74
  120. package/dist/docs/comments.d.ts.map +0 -1
  121. package/dist/docs/comments.js +0 -30
  122. package/dist/docs/index.d.ts +0 -3
  123. package/dist/docs/index.d.ts.map +0 -1
  124. package/dist/docs/index.js +0 -3
  125. package/dist/docs/jsdoc.d.ts.map +0 -1
  126. package/dist/docs/jsdoc.js +0 -126
  127. package/dist/domain/rxjs-x.d.ts.map +0 -1
  128. package/dist/domain/rxjs-x.js +0 -27
  129. package/dist/module-taxonomy.d.ts.map +0 -1
  130. package/dist/module-taxonomy.js +0 -22
  131. package/dist/plugin-loaders.d.ts.map +0 -1
  132. package/dist/plugin-loaders.js +0 -115
  133. package/dist/style/index.d.ts +0 -5
  134. package/dist/style/index.d.ts.map +0 -1
  135. package/dist/style/index.js +0 -5
  136. package/dist/style/perfectionist.d.ts.map +0 -1
  137. package/dist/style/perfectionist.js +0 -31
  138. package/dist/style/prettier.d.ts.map +0 -1
  139. package/dist/style/prettier.js +0 -15
  140. package/dist/style/stylistic.d.ts.map +0 -1
  141. package/dist/style/stylistic.js +0 -17
  142. package/dist/style/unicorn.d.ts.map +0 -1
  143. package/dist/style/unicorn.js +0 -15
  144. package/dist/testing/index.d.ts +0 -5
  145. package/dist/testing/index.d.ts.map +0 -1
  146. package/dist/testing/index.js +0 -5
  147. package/dist/testing/jasmine.d.ts.map +0 -1
  148. package/dist/testing/jasmine.js +0 -25
  149. package/dist/testing/jest.d.ts.map +0 -1
  150. package/dist/testing/jest.js +0 -27
  151. package/dist/testing/playwright.d.ts.map +0 -1
  152. package/dist/testing/playwright.js +0 -29
  153. package/dist/testing/vitest.d.ts.map +0 -1
  154. package/dist/testing/vitest.js +0 -33
  155. package/dist/types.d.ts.map +0 -1
  156. package/dist/types.js +0 -2
  157. package/dist/utilities.d.ts.map +0 -1
  158. package/dist/utilities.js +0 -125
  159. /package/dist/{architecture → infrastructure/architecture}/import-x.d.ts +0 -0
  160. /package/dist/{core → infrastructure/core}/codeperfect.d.ts +0 -0
  161. /package/dist/{core → infrastructure/core}/eslint.d.ts +0 -0
  162. /package/dist/{core → infrastructure/core}/resolver.d.ts +0 -0
  163. /package/dist/{core → infrastructure/core}/typescript.d.ts +0 -0
  164. /package/dist/{docs → infrastructure/docs}/comments.d.ts +0 -0
  165. /package/dist/{docs → infrastructure/docs}/jsdoc.d.ts +0 -0
  166. /package/dist/{domain → infrastructure}/rxjs-x.d.ts +0 -0
  167. /package/dist/{style → infrastructure/style}/perfectionist.d.ts +0 -0
  168. /package/dist/{style → infrastructure/style}/prettier.d.ts +0 -0
  169. /package/dist/{style → infrastructure/style}/stylistic.d.ts +0 -0
  170. /package/dist/{style → infrastructure/style}/unicorn.d.ts +0 -0
  171. /package/dist/{testing → infrastructure/testing}/jasmine.d.ts +0 -0
  172. /package/dist/{testing → infrastructure/testing}/jest.d.ts +0 -0
  173. /package/dist/{testing → infrastructure/testing}/playwright.d.ts +0 -0
  174. /package/dist/{testing → infrastructure/testing}/vitest.d.ts +0 -0