@codyswann/lisa 1.33.1 → 1.35.0
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.
|
@@ -37,7 +37,7 @@ These directories contain files deployed by Lisa **and** files you create. Do no
|
|
|
37
37
|
- `.claude/rules/coding-philosophy.md`, `.claude/rules/plan.md`, `.claude/rules/verfication.md`
|
|
38
38
|
- `CLAUDE.md`, `HUMAN.md`, `.safety-net.json`
|
|
39
39
|
- `.prettierrc.json`, `.prettierignore`, `.lintstagedrc.json`, `.versionrc`, `.nvmrc`
|
|
40
|
-
- `.yamllint`, `.gitleaksignore`, `commitlint.config.cjs`, `sgconfig.yml`, `knip.json`
|
|
40
|
+
- `.yamllint`, `.gitleaksignore`, `.coderabbit.yml`, `commitlint.config.cjs`, `sgconfig.yml`, `knip.json`
|
|
41
41
|
- `eslint.base.ts`, `eslint.typescript.ts`, `eslint.expo.ts`, `eslint.nestjs.ts`, `eslint.cdk.ts`, `eslint.slow.config.ts`
|
|
42
42
|
- `jest.base.ts`, `jest.typescript.ts`, `jest.expo.ts`, `jest.nestjs.ts`, `jest.cdk.ts`
|
|
43
43
|
- `tsconfig.base.json`, `tsconfig.typescript.json`, `tsconfig.expo.json`, `tsconfig.nestjs.json`, `tsconfig.cdk.json`
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
|
|
2
|
+
early_access: true
|
|
3
|
+
inheritance: true
|
|
4
|
+
reviews:
|
|
5
|
+
request_changes_workflow: true
|
|
6
|
+
collapse_walkthrough: false
|
|
7
|
+
sequence_diagrams: false
|
|
8
|
+
estimate_code_review_effort: false
|
|
9
|
+
in_progress_fortune: false
|
|
10
|
+
poem: false
|
|
11
|
+
auto_review:
|
|
12
|
+
drafts: true
|
|
13
|
+
pre_merge_checks:
|
|
14
|
+
docstrings:
|
|
15
|
+
mode: error
|
|
16
|
+
title:
|
|
17
|
+
mode: error
|
|
18
|
+
description:
|
|
19
|
+
mode: error
|
|
20
|
+
tools:
|
|
21
|
+
markdownlint:
|
|
22
|
+
enabled: false
|
|
23
|
+
swiftlint:
|
|
24
|
+
enabled: false
|
|
25
|
+
phpstan:
|
|
26
|
+
enabled: false
|
|
27
|
+
phpmd:
|
|
28
|
+
enabled: false
|
|
29
|
+
phpcs:
|
|
30
|
+
enabled: false
|
|
31
|
+
golangci-lint:
|
|
32
|
+
enabled: false
|
|
33
|
+
detekt:
|
|
34
|
+
enabled: false
|
|
35
|
+
fortitudeLint:
|
|
36
|
+
enabled: false
|
|
37
|
+
buf:
|
|
38
|
+
enabled: false
|
|
39
|
+
regal:
|
|
40
|
+
enabled: false
|
|
41
|
+
pmd:
|
|
42
|
+
enabled: false
|
|
43
|
+
clang:
|
|
44
|
+
enabled: false
|
|
45
|
+
cppcheck:
|
|
46
|
+
enabled: false
|
|
47
|
+
circleci:
|
|
48
|
+
enabled: false
|
|
49
|
+
checkmake:
|
|
50
|
+
enabled: false
|
|
51
|
+
knowledge_base:
|
|
52
|
+
code_guidelines:
|
|
53
|
+
filePatterns:
|
|
54
|
+
- '**/.claude/**/*'
|
|
55
|
+
issue_enrichment:
|
|
56
|
+
auto_enrich:
|
|
57
|
+
enabled: true
|
|
58
|
+
labeling:
|
|
59
|
+
auto_apply_labels: true
|
|
@@ -23,7 +23,11 @@
|
|
|
23
23
|
*
|
|
24
24
|
* Coverage collection is scoped to standard Expo source directories
|
|
25
25
|
* rather than a catch-all glob, preventing config files, scripts, and
|
|
26
|
-
* plugins from distorting coverage numbers.
|
|
26
|
+
* plugins from distorting coverage numbers. The `app/` directory is
|
|
27
|
+
* excluded because Expo Router file-based routing makes those files thin
|
|
28
|
+
* wrappers (8-15 lines) that just re-export feature components.
|
|
29
|
+
* `*View.{ts,tsx}` files are excluded because the Container/View pattern
|
|
30
|
+
* puts all logic in Container files — Views are purely presentational.
|
|
27
31
|
*
|
|
28
32
|
* Inheritance chain:
|
|
29
33
|
* jest.expo.ts (this file)
|
|
@@ -100,7 +104,6 @@ export const getExpoJestConfig = ({
|
|
|
100
104
|
],
|
|
101
105
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
|
|
102
106
|
collectCoverageFrom: [
|
|
103
|
-
"app/**/*.{ts,tsx}",
|
|
104
107
|
"components/**/*.{ts,tsx}",
|
|
105
108
|
"config/**/*.{ts,tsx}",
|
|
106
109
|
"constants/**/*.{ts,tsx}",
|
|
@@ -112,6 +115,7 @@ export const getExpoJestConfig = ({
|
|
|
112
115
|
"stores/**/*.{ts,tsx}",
|
|
113
116
|
"types/**/*.{ts,tsx}",
|
|
114
117
|
"utils/**/*.{ts,tsx}",
|
|
118
|
+
"!**/*View.{ts,tsx}",
|
|
115
119
|
...defaultCoverageExclusions,
|
|
116
120
|
],
|
|
117
121
|
coverageThreshold: thresholds,
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@isaacs/brace-expansion": "^5.0.1"
|
|
89
89
|
},
|
|
90
90
|
"name": "@codyswann/lisa",
|
|
91
|
-
"version": "1.
|
|
91
|
+
"version": "1.35.0",
|
|
92
92
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
93
93
|
"main": "dist/index.js",
|
|
94
94
|
"bin": {
|