@codyswann/lisa 1.56.2 → 1.56.3
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/nestjs/copy-overwrite/eslint.slow.config.ts +16 -1
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
|
@@ -9,10 +9,25 @@
|
|
|
9
9
|
* Thin wrapper around @codyswann/lisa slow eslint config factory.
|
|
10
10
|
* Run periodically via `lint:slow` rather than on every lint pass.
|
|
11
11
|
*
|
|
12
|
+
* Adds a NestJS-specific override to disable `import/no-cycle` for module
|
|
13
|
+
* files, since NestJS uses `forwardRef()` to handle circular module
|
|
14
|
+
* dependencies at runtime.
|
|
15
|
+
*
|
|
12
16
|
* @see https://github.com/import-js/eslint-plugin-import
|
|
13
17
|
* @module eslint.slow.config
|
|
14
18
|
*/
|
|
15
19
|
import { getSlowConfig } from "@codyswann/lisa/eslint/slow";
|
|
16
20
|
import ignoreConfig from "./eslint.ignore.config.json" with { type: "json" };
|
|
17
21
|
|
|
18
|
-
export default
|
|
22
|
+
export default [
|
|
23
|
+
...getSlowConfig({ ignorePatterns: ignoreConfig.ignores || [] }),
|
|
24
|
+
|
|
25
|
+
// NestJS modules use forwardRef() to resolve circular dependencies at runtime.
|
|
26
|
+
// ESLint's static import/no-cycle analysis cannot understand this pattern.
|
|
27
|
+
{
|
|
28
|
+
files: ["**/*.module.ts"],
|
|
29
|
+
rules: {
|
|
30
|
+
"import/no-cycle": "off",
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
];
|
package/package.json
CHANGED
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"axios": ">=1.13.5"
|
|
73
73
|
},
|
|
74
74
|
"name": "@codyswann/lisa",
|
|
75
|
-
"version": "1.56.
|
|
75
|
+
"version": "1.56.3",
|
|
76
76
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
77
77
|
"main": "dist/index.js",
|
|
78
78
|
"exports": {
|