@systemfsoftware/all 2.0.2 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @systemfsoftware/all
2
2
 
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - The cell-vocabulary rules, including `no-io-in-phase-bodies`, are no longer part of the preset, because the vocabulary they read was retired with the record-spec authoring surface.
8
+
3
9
  ## 2.0.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -34,14 +34,13 @@ pnpm oxlint
34
34
 
35
35
  ## What's Included
36
36
 
37
- The preset registers and enables four custom plugin suites alongside stock oxlint correctness rules at `error`:
37
+ The preset registers and enables three custom plugin suites alongside stock oxlint correctness rules at `error`:
38
38
 
39
39
  ### Custom Rule Plugins
40
40
 
41
41
  | Plugin | Scope | Key Invariants Enforced |
42
42
  | -------------------------------------------------- | -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
43
43
  | `@systemfsoftware/oxlint-plugin` | Core Effect & architecture | Ban native `Date.now()`, `Map`, `Set`, `setTimeout`, and `Promise` inside Effect blocks; require structured errors over string errors; forbid boundary tests in unit suites |
44
- | `@systemfsoftware/oxlint-plugin-cell-vocabulary` | Cell architecture | Enforce kernel/executor boundary conventions and domain naming structures by walking cell descriptions |
45
44
  | `@systemfsoftware/oxlint-plugin-effect-dmmf` | DMMF aggregate suite | Bundles schema codec checks, workflow step structure, property-based test isolation, and test hygiene |
46
45
  | `@systemfsoftware/oxlint-plugin-effect-entrypoint` | Application runtime | Require explicit top-level runtime entrypoints (`runMain`, `ManagedRuntime`) and forbid leaking intermediate runtimes |
47
46
 
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
1
  import house from "@systemfsoftware/oxlint-plugin";
2
- import cellVocabulary from "@systemfsoftware/oxlint-plugin-cell-vocabulary";
3
2
  import effectDmmf from "@systemfsoftware/oxlint-plugin-effect-dmmf";
4
3
  import effectEntrypoint from "@systemfsoftware/oxlint-plugin-effect-entrypoint";
5
4
  import { options, overrides, plugins as plugins$1, rules as rules$1 } from "@systemfsoftware/oxlint-plugin-recommended";
@@ -16,7 +15,6 @@ import { options, overrides, plugins as plugins$1, rules as rules$1 } from "@sys
16
15
  */
17
16
  const jsPlugins = [
18
17
  import.meta.resolve("@systemfsoftware/oxlint-plugin"),
19
- import.meta.resolve("@systemfsoftware/oxlint-plugin-cell-vocabulary"),
20
18
  import.meta.resolve("@systemfsoftware/oxlint-plugin-effect-dmmf"),
21
19
  import.meta.resolve("@systemfsoftware/oxlint-plugin-effect-entrypoint")
22
20
  ];
@@ -49,7 +47,6 @@ const plugins = [
49
47
  const rules = {
50
48
  ...rules$1,
51
49
  ...house.configs.recommended.rules,
52
- ...cellVocabulary.configs.recommended.rules,
53
50
  ...effectDmmf.configs.recommended.rules,
54
51
  ...effectEntrypoint.configs.recommended.rules,
55
52
  "no-restricted-imports": ["error", { patterns: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/all",
3
3
  "license": "Apache-2.0",
4
- "version": "2.0.2",
4
+ "version": "2.1.0",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/oxlint-plugin/all#readme",
12
12
  "bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
13
- "description": "Complete oxlint preset for Effect and cell architecture: bundles all custom rule plugins (workflow, schema, entrypoint, cell vocabulary, property testing, test placement, hygiene) with type-aware correctness settings in a single config.",
13
+ "description": "Complete oxlint preset for Effect and cell architecture: bundles all custom rule plugins (workflow, schema, entrypoint, property testing, test placement, hygiene) with type-aware correctness settings in a single config.",
14
14
  "keywords": [
15
15
  "effect",
16
16
  "effect-ts",
@@ -28,18 +28,17 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "@systemfsoftware/oxlint-plugin": "^4.0.2",
31
- "@systemfsoftware/oxlint-plugin-cell-vocabulary": "^2.0.4",
32
- "@systemfsoftware/oxlint-plugin-effect-dmmf": "^6.0.0",
33
31
  "@systemfsoftware/oxlint-plugin-effect-schema": "^5.3.2",
34
- "@systemfsoftware/oxlint-plugin-effect-workflow": "^5.1.0",
35
32
  "@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.1.0",
33
+ "@systemfsoftware/oxlint-plugin-effect-workflow": "^5.1.1",
36
34
  "@systemfsoftware/oxlint-plugin-recommended": "^1.3.1",
37
- "@systemfsoftware/oxlint-plugin-property-testing": "^2.0.0",
38
35
  "@systemfsoftware/oxlint-plugin-test-hygiene": "^1.1.9",
39
- "@systemfsoftware/oxlint-plugin-test-placement": "^3.4.1"
36
+ "@systemfsoftware/oxlint-plugin-test-placement": "^3.4.1",
37
+ "@systemfsoftware/oxlint-plugin-effect-dmmf": "^6.0.0",
38
+ "@systemfsoftware/oxlint-plugin-property-testing": "^2.0.0"
40
39
  },
41
40
  "devDependencies": {
42
- "@systemfsoftware/arethetypeswrong-cli": "^4.1.0",
41
+ "@systemfsoftware/arethetypeswrong-cli": "^4.2.0",
43
42
  "@types/node": "^24",
44
43
  "effect": "4.0.0-rc.112",
45
44
  "oxlint": "^1.77.0",