@dxos/eslint-plugin-rules 0.8.4-main.2c6827d → 0.8.4-main.3eb6e50203

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/index.js CHANGED
@@ -5,6 +5,7 @@
5
5
  import comment from './rules/comment.js';
6
6
  import effectSubpathImports from './rules/effect-subpath-imports.js';
7
7
  import header from './rules/header.js';
8
+ import noEffectRunPromise from './rules/no-effect-run-promise.js';
8
9
  import noEmptyPromiseCatch from './rules/no-empty-promise-catch.js';
9
10
  import fs from 'node:fs';
10
11
 
@@ -20,6 +21,7 @@ const plugin = {
20
21
  comment,
21
22
  'effect-subpath-imports': effectSubpathImports,
22
23
  header,
24
+ 'no-effect-run-promise': noEffectRunPromise,
23
25
  'no-empty-promise-catch': noEmptyPromiseCatch,
24
26
  },
25
27
  configs: {
@@ -30,6 +32,7 @@ const plugin = {
30
32
  rules: {
31
33
  'dxos-plugin/effect-subpath-imports': 'error',
32
34
  'dxos-plugin/header': 'error',
35
+ 'dxos-plugin/no-effect-run-promise': 'error',
33
36
  'dxos-plugin/no-empty-promise-catch': 'error',
34
37
  // TODO(dmaretskyi): Turned off due to large number of errors and no auto-fix.
35
38
  // 'dxos-plugin/comment': 'error',
package/moon.yml CHANGED
@@ -1,2 +1,2 @@
1
- type: library
1
+ layer: library
2
2
  language: typescript
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@dxos/eslint-plugin-rules",
3
- "version": "0.8.4-main.2c6827d",
3
+ "version": "0.8.4-main.3eb6e50203",
4
4
  "homepage": "https://dxos.org",
5
5
  "bugs": "https://github.com/dxos/dxos/issues",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/dxos/dxos"
9
+ },
6
10
  "license": "MIT",
7
11
  "author": "info@dxos.org",
8
12
  "sideEffects": true,
@@ -4,9 +4,23 @@
4
4
 
5
5
  import { createRequire } from 'node:module';
6
6
 
7
-
8
7
  const EXCLUDED_EFFECT_PACKAGES = ['@effect/vitest'];
9
8
 
9
+ /**
10
+ * Map of Effect base-package exports that come from a subpath (not a direct segment).
11
+ * Used when resolving imports like `import { pipe } from 'effect'` → effect/Function.
12
+ */
13
+ const EFFECT_EXPORT_TO_SUBPATH = {
14
+ pipe: 'Function',
15
+ flow: 'Function',
16
+ };
17
+
18
+ /**
19
+ * Subpaths that allow named imports (e.g. `import { pipe, flow } from 'effect/Function'`).
20
+ * Other subpaths still require namespace imports.
21
+ */
22
+ const NAMED_IMPORT_ALLOWED_SUBPATHS = new Set(['Function']);
23
+
10
24
  /**
11
25
  * ESLint rule to transform combined imports from 'effect' and '@effect/*'
12
26
  * into subpath imports except for the EXCLUDED_EFFECT_PACKAGES.
@@ -59,6 +73,15 @@ export default {
59
73
  return exported.has(segment);
60
74
  };
61
75
 
76
+ const resolveExportToSegment = (pkgName, exportName) => {
77
+ if (isValidSubpath(pkgName, exportName)) return exportName;
78
+ if (pkgName === 'effect' && EFFECT_EXPORT_TO_SUBPATH[exportName]) {
79
+ const segment = EFFECT_EXPORT_TO_SUBPATH[exportName];
80
+ return isValidSubpath(pkgName, segment) ? segment : null;
81
+ }
82
+ return null;
83
+ };
84
+
62
85
  const isEffectPackage = (source) => {
63
86
  return source === 'effect' || source.startsWith('effect/') || source.startsWith('@effect/');
64
87
  };
@@ -66,7 +89,7 @@ export default {
66
89
  const shouldSkipEffectPackage = (basePackage) => {
67
90
  return EXCLUDED_EFFECT_PACKAGES.includes(basePackage);
68
91
  };
69
-
92
+
70
93
  /**
71
94
  * Get the base package name from a source string.
72
95
  * @param {string} source - The source string to get the base package name from.
@@ -91,11 +114,13 @@ export default {
91
114
  const basePackage = getBasePackage(source);
92
115
  if (shouldSkipEffectPackage(basePackage)) return;
93
116
 
94
- // If it's a subpath import (e.g., 'effect/Schema'), enforce namespace import only.
117
+ // If it's a subpath import (e.g., 'effect/Schema'), enforce namespace import except for allowed subpaths.
95
118
  if (source.startsWith(basePackage + '/')) {
119
+ const segment = source.slice(basePackage.length + 1);
120
+ const allowsNamed = NAMED_IMPORT_ALLOWED_SUBPATHS.has(segment);
96
121
  const isNamespaceOnly =
97
122
  node.specifiers.length === 1 && node.specifiers[0].type === 'ImportNamespaceSpecifier';
98
- if (!isNamespaceOnly) {
123
+ if (!allowsNamed && !isNamespaceOnly) {
99
124
  context.report({
100
125
  node,
101
126
  message: 'Use namespace import for Effect subpaths',
@@ -129,18 +154,22 @@ export default {
129
154
  else regularImports.push(entry);
130
155
  }
131
156
 
132
- // Partition into resolvable vs unresolved specifiers.
157
+ // Partition into resolvable vs unresolved specifiers (resolved entries include segment for fix).
133
158
  const resolvedType = [];
134
159
  const unresolvedType = [];
135
160
  const resolvedRegular = [];
136
161
  const unresolvedRegular = [];
137
162
 
138
- typeImports.forEach((s) =>
139
- isValidSubpath(packageName, s.imported) ? resolvedType.push(s) : unresolvedType.push(s),
140
- );
141
- regularImports.forEach((s) =>
142
- isValidSubpath(packageName, s.imported) ? resolvedRegular.push(s) : unresolvedRegular.push(s),
143
- );
163
+ typeImports.forEach((spec) => {
164
+ const segment = resolveExportToSegment(packageName, spec.imported);
165
+ if (segment) resolvedType.push({ ...spec, segment });
166
+ else unresolvedType.push(spec);
167
+ });
168
+ regularImports.forEach((spec) => {
169
+ const segment = resolveExportToSegment(packageName, spec.imported);
170
+ if (segment) resolvedRegular.push({ ...spec, segment });
171
+ else unresolvedRegular.push(spec);
172
+ });
144
173
 
145
174
  const unresolved = [...unresolvedType, ...unresolvedRegular].map(({ imported }) => imported);
146
175
 
@@ -160,27 +189,55 @@ export default {
160
189
  return null;
161
190
  }
162
191
 
163
- // Prefer regular (value) imports over type imports on duplicates.
164
- const seenResolved = new Set(); // key: `${alias}|${segment}`
165
-
166
- // First, emit value imports and record keys.
167
- resolvedRegular.forEach(({ imported, local }) => {
168
- const alias = imported !== local ? local : imported;
169
- const key = `${alias}|${imported}`;
170
- if (seenResolved.has(key)) return;
171
- seenResolved.add(key);
172
- imports.push(`import * as ${alias} from '${packageName}/${imported}';`);
192
+ // Group resolved imports by segment.
193
+ const bySegment = new Map(); // segment -> { regular: [...], type: [...] }
194
+ resolvedRegular.forEach((entry) => {
195
+ const seg = entry.segment;
196
+ let group = bySegment.get(seg);
197
+ if (!group) {
198
+ group = { regular: [], type: [] };
199
+ bySegment.set(seg, group);
200
+ }
201
+ group.regular.push(entry);
173
202
  });
174
-
175
- // Then, emit type imports only if a value import for the same alias/segment was not emitted.
176
- resolvedType.forEach(({ imported, local }) => {
177
- const alias = imported !== local ? local : imported;
178
- const key = `${alias}|${imported}`;
179
- if (seenResolved.has(key)) return; // skip type if value exists
180
- seenResolved.add(key);
181
- imports.push(`import type * as ${alias} from '${packageName}/${imported}';`);
203
+ resolvedType.forEach((entry) => {
204
+ const seg = entry.segment;
205
+ let group = bySegment.get(seg);
206
+ if (!group) {
207
+ group = { regular: [], type: [] };
208
+ bySegment.set(seg, group);
209
+ }
210
+ group.type.push(entry);
182
211
  });
183
212
 
213
+ for (const [segment, group] of bySegment) {
214
+ const useNamed = NAMED_IMPORT_ALLOWED_SUBPATHS.has(segment);
215
+ const merged = [...group.regular];
216
+ for (const t of group.type) {
217
+ if (!group.regular.some((r) => r.local === t.local)) merged.push(t);
218
+ }
219
+ if (useNamed && merged.length > 0) {
220
+ const specParts = merged.map(({ imported, local }) =>
221
+ imported !== local ? `${imported} as ${local}` : imported,
222
+ );
223
+ imports.push(`import { ${specParts.join(', ')} } from '${packageName}/${segment}';`);
224
+ } else {
225
+ const seen = new Set();
226
+ for (const { imported, local } of merged) {
227
+ const alias = imported !== local ? local : imported;
228
+ if (seen.has(alias)) continue;
229
+ seen.add(alias);
230
+ const isTypeOnly =
231
+ group.type.some((t) => t.imported === imported) &&
232
+ !group.regular.some((r) => r.imported === imported);
233
+ const importStr = isTypeOnly
234
+ ? `import type * as ${alias} from '${packageName}/${segment}';`
235
+ : `import * as ${alias} from '${packageName}/${segment}';`;
236
+ imports.push(importStr);
237
+ }
238
+ }
239
+ }
240
+
184
241
  // If there are unresolved, keep them in a single base import.
185
242
  if (unresolvedType.length || unresolvedRegular.length) {
186
243
  // Prefer value over type for the same local alias when both are present.
@@ -0,0 +1,52 @@
1
+ //
2
+ // Copyright 2025 DXOS.org
3
+ //
4
+
5
+ 'use strict';
6
+
7
+ /**
8
+ * ESLint rule to prevent usage of Effect.runPromise and Effect.runPromiseExit,
9
+ * and suggest runAndForwardErrors instead.
10
+ * @example
11
+ * // bad
12
+ * await Effect.runPromise(myEffect);
13
+ * await Effect.runPromiseExit(myEffect);
14
+ *
15
+ * // good
16
+ * await runAndForwardErrors(myEffect);
17
+ */
18
+ export default {
19
+ meta: {
20
+ type: 'problem',
21
+ docs: {
22
+ description: 'Disallow Effect.runPromise; suggest runAndForwardErrors instead.',
23
+ recommended: true,
24
+ },
25
+ messages: {
26
+ noRunPromise: 'Use runAndForwardErrors from @dxos/effect instead of Effect.runPromise.',
27
+ },
28
+ schema: [],
29
+ },
30
+ create(context) {
31
+ return {
32
+ CallExpression(node) {
33
+ // Check if this is Effect.runPromise or Effect.runPromiseExit
34
+ const isEffectMethod =
35
+ node.callee.type === 'MemberExpression' &&
36
+ node.callee.object.type === 'Identifier' &&
37
+ node.callee.object.name === 'Effect' &&
38
+ node.callee.property.type === 'Identifier';
39
+
40
+ if (isEffectMethod) {
41
+ const methodName = node.callee.property.name;
42
+ if (methodName === 'runPromise') {
43
+ context.report({
44
+ node,
45
+ messageId: 'noRunPromise',
46
+ });
47
+ }
48
+ }
49
+ },
50
+ };
51
+ },
52
+ };