@geonosis/oxlint-plugin-biological-architecture 1.4.0 → 2.1.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 (55) hide show
  1. package/README.md +4 -3
  2. package/RULES.md +923 -0
  3. package/corpus/.oxlintrc.json +97 -5
  4. package/corpus/domains/document/workflows/bad-per-kind-workflow.ts +5 -0
  5. package/corpus/domains/document/workflows/good-minted-workflow.ts +8 -0
  6. package/corpus/engine/bad-durable-free-read.ts +20 -0
  7. package/corpus/engine/bad-nested-zero-retry.ts +9 -0
  8. package/corpus/engine/bad-no-retry.ts +8 -0
  9. package/corpus/engine/good-durable-other-spelling.ts +10 -0
  10. package/corpus/engine/good-durable-read-is-a-step.ts +18 -0
  11. package/corpus/engine/good-durable-read-through-helper.ts +20 -0
  12. package/corpus/engine/good-inline-free-read.ts +7 -0
  13. package/corpus/engine/good-retry-budget.ts +9 -0
  14. package/corpus/floors/domains/alpha/src/good-downhill.ts +3 -0
  15. package/corpus/floors/domains/alpha/src/index.ts +1 -0
  16. package/corpus/floors/domains/alpha/src/reaches-own-ui.ts +3 -0
  17. package/corpus/floors/domains/alpha/src/reaches-sideways-type.ts +3 -0
  18. package/corpus/floors/domains/alpha/src/reaches-sideways.ts +3 -0
  19. package/corpus/floors/domains/alpha/src/ui/panel.ts +3 -0
  20. package/corpus/floors/domains/beta/src/index.ts +3 -0
  21. package/corpus/floors/foundations/above/src/good-downhill.ts +3 -0
  22. package/corpus/floors/foundations/base/src/good-downhill.ts +3 -0
  23. package/corpus/floors/foundations/base/src/index.ts +1 -0
  24. package/corpus/floors/foundations/base/src/reaches-sideways.ts +3 -0
  25. package/corpus/floors/foundations/base/src/reaches-up.ts +3 -0
  26. package/corpus/floors/packages/method/src/own.ts +1 -0
  27. package/corpus/floors/packages/method/src/reaches-up.ts +3 -0
  28. package/corpus/floors.oxlintrc.json +86 -0
  29. package/corpus/manifest.json +4 -0
  30. package/corpus/subpaths/bad-root-barrel.ts +5 -0
  31. package/corpus/subpaths/good-spans-two-subpaths.ts +5 -0
  32. package/corpus/subpaths/good-subpath.ts +4 -0
  33. package/corpus/subpaths/good-type-only.ts +4 -0
  34. package/corpus/time/bad-boundary-type.ts +3 -0
  35. package/corpus/time/bad-second-door.ts +6 -0
  36. package/corpus/time/door.ts +15 -0
  37. package/corpus/time/generated/from-openapi.ts +1 -0
  38. package/corpus/time/good-boundary-primitive.ts +3 -0
  39. package/corpus/todos/bad-unplanned.ts +2 -0
  40. package/corpus/todos/good-planned.ts +2 -0
  41. package/corpus/todos/good-string-not-a-comment.ts +2 -0
  42. package/corpus/workers/good-with-cells.ts +7 -0
  43. package/corpus/workers/good-with-connection.ts +7 -0
  44. package/corpus/workflows/bad-unscoped-host.ts +7 -0
  45. package/corpus/workflows/good-host-config-elsewhere.ts +6 -0
  46. package/corpus/workflows/good-scoped-entrypoint.ts +17 -0
  47. package/corpus/workflows/good-scoped-host.ts +11 -0
  48. package/dist/{chunk-UVENNNFM.js → chunk-LTDP2733.js} +36 -3
  49. package/dist/index.d.ts +17 -2
  50. package/dist/index.js +1129 -372
  51. package/dist/presets.d.ts +31 -2
  52. package/dist/presets.js +5 -1
  53. package/package.json +3 -2
  54. /package/corpus/{packages/workflows/src → domains/document/workflows}/bad-per-kind-saga.ts +0 -0
  55. /package/corpus/{apps/api/src → workers}/bad-unscoped-worker.ts +0 -0
package/README.md CHANGED
@@ -62,7 +62,7 @@ everything below the organelle is inert. A cell never composes another cell.
62
62
  | `tenant-scoping` | 4 | every row placed, scoped and narrowed to one organisation |
63
63
  | `backend-d1` | 2 | Cloudflare D1 facts — false on an engine with transactions |
64
64
  | `backend-medusa` | 1 | the storefront route surface |
65
- | `backend-sagaflow-cf` | 1 | durable runs on Cloudflare Workflows — false of an inline saga |
65
+ | `backend-workflows-cf` | 1 | durable runs on Cloudflare Workflows — false of an inline run |
66
66
  | `tooling` | 1 | `layer-walls` — a repo's OWN layers, declared as data and walled |
67
67
  | `comment-ceiling` | 1 | the comment posture, opt-in (+ oxlint's `capitalized-comments`) |
68
68
 
@@ -201,8 +201,9 @@ Then find the stray copy, and mind that the answer is package-manager-specific:
201
201
 
202
202
  ## Where to read on
203
203
 
204
- - `RULES.md` — every rule, its preset, which source tree it came from, and how each divergence was
205
- resolved.
204
+ - `RULES.md` — in this tarball: every rule, its preset, which source tree it came from, how each
205
+ divergence was resolved, the option each gated rule refuses without, and a generated line per rule
206
+ naming every option it accepts.
206
207
  - `skills/geonosis-code/SKILL.md` in the repository — **generated** from every rule's `fixShape`:
207
208
  the shape each gate accepts, in one short document meant to be read before writing code.
208
209