@codyswann/lisa 1.4.0 → 1.5.1
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.
|
@@ -36,6 +36,7 @@ export default [
|
|
|
36
36
|
// Use same ignores as main config, plus ignore all non-TS files
|
|
37
37
|
// This prevents errors from inline eslint directives in JS files
|
|
38
38
|
// that reference rules not loaded in this minimal config
|
|
39
|
+
// Also ignore template files in type-specific directories that don't have tsconfig
|
|
39
40
|
{
|
|
40
41
|
ignores: [
|
|
41
42
|
...ignorePatterns,
|
|
@@ -44,6 +45,11 @@ export default [
|
|
|
44
45
|
"**/*.cjs",
|
|
45
46
|
"**/*.jsx",
|
|
46
47
|
"cdk.out/**",
|
|
48
|
+
"cdk/**",
|
|
49
|
+
"expo/**",
|
|
50
|
+
"nestjs/**",
|
|
51
|
+
"typescript/**",
|
|
52
|
+
"npm-package/**",
|
|
47
53
|
],
|
|
48
54
|
},
|
|
49
55
|
|
|
@@ -37,8 +37,19 @@ export default [
|
|
|
37
37
|
// Use same ignores as main config, plus ignore all non-TS files
|
|
38
38
|
// This prevents errors from inline eslint directives in JS files
|
|
39
39
|
// that reference rules not loaded in this minimal config
|
|
40
|
+
// Also ignore template files in type-specific directories that don't have tsconfig
|
|
40
41
|
{
|
|
41
|
-
ignores: [
|
|
42
|
+
ignores: [
|
|
43
|
+
...ignorePatterns,
|
|
44
|
+
"**/*.js",
|
|
45
|
+
"**/*.mjs",
|
|
46
|
+
"**/*.cjs",
|
|
47
|
+
"cdk/**",
|
|
48
|
+
"expo/**",
|
|
49
|
+
"nestjs/**",
|
|
50
|
+
"typescript/**",
|
|
51
|
+
"npm-package/**",
|
|
52
|
+
],
|
|
42
53
|
},
|
|
43
54
|
|
|
44
55
|
// TypeScript/TSX files - slow import and React rules only
|
package/package.json
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"update-node-version": "tsx scripts/update-node-version.ts",
|
|
21
21
|
"cleanup:amplify-branches": "bash scripts/cleanup-amplify-branches.sh",
|
|
22
22
|
"cleanup:github-branches": "bash scripts/cleanup-github-branches.sh",
|
|
23
|
+
"github:status": "bash scripts/github-status-check.sh",
|
|
23
24
|
"setup:deploy-key": "bash scripts/setup-deploy-key.sh",
|
|
24
25
|
"lint:slow": "eslint . --config eslint.slow.config.ts --quiet",
|
|
25
26
|
"knip": "knip",
|
|
@@ -79,7 +80,7 @@
|
|
|
79
80
|
"@ast-grep/cli"
|
|
80
81
|
],
|
|
81
82
|
"name": "@codyswann/lisa",
|
|
82
|
-
"version": "1.
|
|
83
|
+
"version": "1.5.1",
|
|
83
84
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
84
85
|
"main": "dist/index.js",
|
|
85
86
|
"bin": {
|
|
@@ -32,8 +32,20 @@ export default [
|
|
|
32
32
|
// Use same ignores as main config, plus ignore all non-TS files
|
|
33
33
|
// This prevents errors from inline eslint directives in JS files
|
|
34
34
|
// that reference rules not loaded in this minimal config
|
|
35
|
+
// Also ignore template files in type-specific directories that don't have tsconfig
|
|
35
36
|
{
|
|
36
|
-
ignores: [
|
|
37
|
+
ignores: [
|
|
38
|
+
...ignorePatterns,
|
|
39
|
+
"**/*.js",
|
|
40
|
+
"**/*.mjs",
|
|
41
|
+
"**/*.cjs",
|
|
42
|
+
"**/*.jsx",
|
|
43
|
+
"cdk/**",
|
|
44
|
+
"expo/**",
|
|
45
|
+
"nestjs/**",
|
|
46
|
+
"typescript/**",
|
|
47
|
+
"npm-package/**",
|
|
48
|
+
],
|
|
37
49
|
},
|
|
38
50
|
|
|
39
51
|
// TypeScript files - slow import rules only
|