@codyswann/lisa 2.6.1 → 2.6.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/cdk/copy-overwrite/.oxlintrc.json +12 -1
- package/expo/copy-overwrite/.oxlintrc.json +16 -1
- package/nestjs/copy-overwrite/.oxlintrc.json +11 -1
- package/oxlint/base.json +7 -5
- package/oxlint/expo.json +0 -8
- 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
- package/typescript/copy-overwrite/.oxlintrc.json +11 -1
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
-
"extends": ["./node_modules/@codyswann/lisa/oxlint/cdk.json"]
|
|
3
|
+
"extends": ["./node_modules/@codyswann/lisa/oxlint/cdk.json"],
|
|
4
|
+
"ignorePatterns": [
|
|
5
|
+
"build/**",
|
|
6
|
+
"dist/**",
|
|
7
|
+
".build/**",
|
|
8
|
+
"coverage/**",
|
|
9
|
+
"node_modules/**",
|
|
10
|
+
"*.generated.*",
|
|
11
|
+
"**/__generated__/**",
|
|
12
|
+
"**/generated/**",
|
|
13
|
+
"cdk.out/**"
|
|
14
|
+
]
|
|
4
15
|
}
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
-
"extends": ["./node_modules/@codyswann/lisa/oxlint/expo.json"]
|
|
3
|
+
"extends": ["./node_modules/@codyswann/lisa/oxlint/expo.json"],
|
|
4
|
+
"ignorePatterns": [
|
|
5
|
+
"build/**",
|
|
6
|
+
"dist/**",
|
|
7
|
+
".build/**",
|
|
8
|
+
"coverage/**",
|
|
9
|
+
"node_modules/**",
|
|
10
|
+
"*.generated.*",
|
|
11
|
+
"**/__generated__/**",
|
|
12
|
+
"**/generated/**",
|
|
13
|
+
".expo/**",
|
|
14
|
+
"ios/**",
|
|
15
|
+
"android/**",
|
|
16
|
+
"web-build/**",
|
|
17
|
+
"components/ui/**"
|
|
18
|
+
]
|
|
4
19
|
}
|
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
-
"extends": ["./node_modules/@codyswann/lisa/oxlint/nestjs.json"]
|
|
3
|
+
"extends": ["./node_modules/@codyswann/lisa/oxlint/nestjs.json"],
|
|
4
|
+
"ignorePatterns": [
|
|
5
|
+
"build/**",
|
|
6
|
+
"dist/**",
|
|
7
|
+
".build/**",
|
|
8
|
+
"coverage/**",
|
|
9
|
+
"node_modules/**",
|
|
10
|
+
"*.generated.*",
|
|
11
|
+
"**/__generated__/**",
|
|
12
|
+
"**/generated/**"
|
|
13
|
+
]
|
|
4
14
|
}
|
package/oxlint/base.json
CHANGED
|
@@ -9,15 +9,17 @@
|
|
|
9
9
|
"promise"
|
|
10
10
|
],
|
|
11
11
|
"categories": {
|
|
12
|
-
"correctness": "
|
|
12
|
+
"correctness": "warn"
|
|
13
13
|
},
|
|
14
14
|
"rules": {
|
|
15
|
-
"max-lines": ["error", { "max": 300, "skipBlankLines": true, "skipComments": true }],
|
|
16
|
-
"max-lines-per-function": ["error", { "max": 75, "skipBlankLines": true, "skipComments": true }],
|
|
17
|
-
"no-console": "warn",
|
|
18
15
|
"no-debugger": "error",
|
|
19
16
|
"prefer-const": "error",
|
|
20
|
-
"no-var": "error"
|
|
17
|
+
"no-var": "error",
|
|
18
|
+
"no-console": "off",
|
|
19
|
+
"no-unused-vars": "off",
|
|
20
|
+
"max-lines": "off",
|
|
21
|
+
"max-lines-per-function": "off",
|
|
22
|
+
"jsdoc/check-tag-names": "off"
|
|
21
23
|
},
|
|
22
24
|
"ignorePatterns": [
|
|
23
25
|
"build/**",
|
package/oxlint/expo.json
CHANGED
|
@@ -15,14 +15,6 @@
|
|
|
15
15
|
"categories": {
|
|
16
16
|
"correctness": "error"
|
|
17
17
|
},
|
|
18
|
-
"overrides": [
|
|
19
|
-
{
|
|
20
|
-
"files": ["**/*.tsx"],
|
|
21
|
-
"rules": {
|
|
22
|
-
"max-lines": ["error", { "max": 400, "skipBlankLines": true, "skipComments": true }]
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
],
|
|
26
18
|
"ignorePatterns": [
|
|
27
19
|
"build/**",
|
|
28
20
|
"dist/**",
|
package/package.json
CHANGED
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"lodash": ">=4.18.1"
|
|
80
80
|
},
|
|
81
81
|
"name": "@codyswann/lisa",
|
|
82
|
-
"version": "2.6.
|
|
82
|
+
"version": "2.6.3",
|
|
83
83
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
84
84
|
"main": "dist/index.js",
|
|
85
85
|
"exports": {
|
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
-
"extends": ["./node_modules/@codyswann/lisa/oxlint/typescript.json"]
|
|
3
|
+
"extends": ["./node_modules/@codyswann/lisa/oxlint/typescript.json"],
|
|
4
|
+
"ignorePatterns": [
|
|
5
|
+
"build/**",
|
|
6
|
+
"dist/**",
|
|
7
|
+
".build/**",
|
|
8
|
+
"coverage/**",
|
|
9
|
+
"node_modules/**",
|
|
10
|
+
"*.generated.*",
|
|
11
|
+
"**/__generated__/**",
|
|
12
|
+
"**/generated/**"
|
|
13
|
+
]
|
|
4
14
|
}
|