@codyswann/lisa 1.11.5 → 1.11.6
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.
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
* - import/no-cycle - Detects circular dependencies (very slow)
|
|
16
16
|
* - react-compiler/react-compiler - React Compiler compatibility checks (slow)
|
|
17
17
|
* - react-hooks/static-components - Static component optimization checks (slow)
|
|
18
|
-
*
|
|
19
18
|
* @see https://github.com/import-js/eslint-plugin-import
|
|
20
19
|
* @see https://react.dev/learn/react-compiler
|
|
21
20
|
* @module eslint.slow.config
|
|
@@ -41,6 +40,7 @@ export default [
|
|
|
41
40
|
{
|
|
42
41
|
ignores: [
|
|
43
42
|
...ignorePatterns,
|
|
43
|
+
"node_modules/**",
|
|
44
44
|
"**/*.js",
|
|
45
45
|
"**/*.mjs",
|
|
46
46
|
"**/*.cjs",
|
|
@@ -82,6 +82,8 @@ export default [
|
|
|
82
82
|
>) ?? {}),
|
|
83
83
|
typescript: true,
|
|
84
84
|
},
|
|
85
|
+
// Skip parsing external modules to avoid parser errors with Flow/non-TS syntax
|
|
86
|
+
"import/ignore": ["node_modules", "react-native", "\\.native\\."],
|
|
85
87
|
},
|
|
86
88
|
rules: {
|
|
87
89
|
// ONLY slow rules - everything else runs in the main config
|
|
@@ -90,7 +92,7 @@ export default [
|
|
|
90
92
|
"import/namespace": "error",
|
|
91
93
|
"import/no-cycle": "error",
|
|
92
94
|
|
|
93
|
-
"sonarjs/deprecation": "
|
|
95
|
+
"sonarjs/deprecation": "off",
|
|
94
96
|
|
|
95
97
|
// React Compiler compatibility (slow)
|
|
96
98
|
"react-compiler/react-compiler": "error",
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"resolutions": {},
|
|
76
76
|
"name": "@codyswann/lisa",
|
|
77
|
-
"version": "1.11.
|
|
77
|
+
"version": "1.11.6",
|
|
78
78
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
79
79
|
"main": "dist/index.js",
|
|
80
80
|
"bin": {
|