@codyswann/lisa 2.6.0 → 2.6.2

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.
@@ -1,3 +1,7 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/cdk", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/cdk", "./tsconfig.local.json"],
3
+ "compilerOptions": {
4
+ "baseUrl": "./",
5
+ "ignoreDeprecations": "6.0"
6
+ }
3
7
  }
@@ -9,7 +9,9 @@
9
9
  "test:unit": "vitest run --exclude='**/integration/**'",
10
10
  "test:integration": "vitest run tests/integration --passWithNoTests",
11
11
  "test:cov": "vitest run --coverage",
12
- "test:watch": "vitest"
12
+ "test:watch": "vitest",
13
+ "lint": "oxlint && eslint . --quiet",
14
+ "lint:fix": "oxlint --fix && eslint . --fix"
13
15
  },
14
16
  "dependencies": {
15
17
  "@aws-cdk/aws-amplify-alpha": "^2.235.0-alpha.0",
@@ -22,7 +24,10 @@
22
24
  "aws-cdk": "^2.1104.0",
23
25
  "vite": "^8.0.5",
24
26
  "vitest": "^4.1.0",
25
- "@vitest/coverage-v8": "^4.1.0"
27
+ "@vitest/coverage-v8": "^4.1.0",
28
+ "eslint-plugin-oxlint": "^1.62.0",
29
+ "oxlint": "^1.62.0",
30
+ "oxlint-tsgolint": "^0.22.1"
26
31
  },
27
32
  "bin": {
28
33
  "infrastructure": "bin/infrastructure.js"
@@ -1,3 +1,7 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"],
3
+ "compilerOptions": {
4
+ "baseUrl": "./",
5
+ "ignoreDeprecations": "6.0"
6
+ }
3
7
  }
@@ -48,7 +48,9 @@
48
48
  "test:unit": "NODE_ENV=test jest --testPathIgnorePatterns=\"\\.integration[.\\\\-](test|spec)\\.(ts|tsx)$\" --passWithNoTests",
49
49
  "test:integration": "NODE_ENV=test jest --testPathPatterns=\"\\.integration[.\\\\-](test|spec)\\.(ts|tsx)$\" --passWithNoTests",
50
50
  "test:cov": "NODE_ENV=test jest --coverage",
51
- "test:watch": "NODE_ENV=test jest --watch"
51
+ "test:watch": "NODE_ENV=test jest --watch",
52
+ "lint": "oxlint && eslint . --quiet",
53
+ "lint:fix": "oxlint --fix && eslint . --fix"
52
54
  },
53
55
  "dependencies": {
54
56
  "@apollo/client": "^3.10.8",
@@ -141,7 +143,10 @@
141
143
  "@jest/test-sequencer": "^30.2.0",
142
144
  "jest-environment-jsdom": "^30.2.0",
143
145
  "jest-expo": "^54.0.12",
144
- "serve": "^14.2.0"
146
+ "serve": "^14.2.0",
147
+ "eslint-plugin-oxlint": "^1.62.0",
148
+ "oxlint": "^1.62.0",
149
+ "oxlint-tsgolint": "^0.22.1"
145
150
  },
146
151
  "resolutions": {
147
152
  "@isaacs/brace-expansion": "^5.0.1",
@@ -1,3 +1,7 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/nestjs", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/nestjs", "./tsconfig.local.json"],
3
+ "compilerOptions": {
4
+ "baseUrl": "./",
5
+ "ignoreDeprecations": "6.0"
6
+ }
3
7
  }
@@ -35,7 +35,9 @@
35
35
  "test:unit": "vitest run --exclude='**/integration/**'",
36
36
  "test:integration": "vitest run '.integration.' --passWithNoTests",
37
37
  "test:cov": "vitest run --coverage",
38
- "test:watch": "vitest"
38
+ "test:watch": "vitest",
39
+ "lint": "oxlint && eslint . --quiet",
40
+ "lint:fix": "oxlint --fix && eslint . --fix"
39
41
  },
40
42
  "dependencies": {
41
43
  "@apollo/server": "^5.2.0",
@@ -82,7 +84,10 @@
82
84
  "serverless-offline": "^14.4.0",
83
85
  "vite": "^8.0.5",
84
86
  "vitest": "^4.1.0",
85
- "@vitest/coverage-v8": "^4.1.0"
87
+ "@vitest/coverage-v8": "^4.1.0",
88
+ "eslint-plugin-oxlint": "^1.62.0",
89
+ "oxlint": "^1.62.0",
90
+ "oxlint-tsgolint": "^0.22.1"
86
91
  }
87
92
  }
88
93
  }
package/oxlint/base.json CHANGED
@@ -12,12 +12,14 @@
12
12
  "correctness": "error"
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.0",
82
+ "version": "2.6.2",
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,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-cdk",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "AWS CDK-specific plugin",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,3 +1,7 @@
1
1
  {
2
- "extends": ["@codyswann/lisa/tsconfig/typescript", "./tsconfig.local.json"]
2
+ "extends": ["@codyswann/lisa/tsconfig/typescript", "./tsconfig.local.json"],
3
+ "compilerOptions": {
4
+ "baseUrl": "./",
5
+ "ignoreDeprecations": "6.0"
6
+ }
3
7
  }
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "force": {
3
3
  "scripts": {
4
- "lint": "eslint . --quiet",
4
+ "lint": "oxlint && eslint . --quiet",
5
5
  "format:check": "prettier --check .",
6
6
  "format": "prettier --check . --write",
7
7
  "test": "vitest run",
8
8
  "test:unit": "vitest run --exclude='**/integration/**'",
9
9
  "test:cov": "vitest run --coverage",
10
10
  "test:watch": "vitest",
11
- "lint:fix": "eslint . --fix",
11
+ "lint:fix": "oxlint --fix && eslint . --fix",
12
12
  "lint:slow": "eslint . --config eslint.slow.config.ts --quiet",
13
13
  "typecheck": "tsc --noEmit",
14
14
  "knip": "knip",
@@ -16,6 +16,11 @@
16
16
  "sg:scan": "ast-grep scan",
17
17
  "prepare": "node -e \"if (process.env.INIT_CWD && process.env.INIT_CWD.includes('.serverless')) { process.exit(0); }\" && husky install || true"
18
18
  },
19
+ "devDependencies": {
20
+ "eslint-plugin-oxlint": "^1.62.0",
21
+ "oxlint": "^1.62.0",
22
+ "oxlint-tsgolint": "^0.22.1"
23
+ },
19
24
  "resolutions": {
20
25
  "@isaacs/brace-expansion": "^5.0.1",
21
26
  "axios": ">=1.15.0",