@codyswann/lisa 1.51.1 → 1.51.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.
@@ -34,6 +34,7 @@ export declare function getSlowConfig({ ignorePatterns, }?: {
34
34
  "import/resolver": {
35
35
  typescript: boolean;
36
36
  };
37
+ "import/ignore": string[];
37
38
  };
38
39
  rules: {
39
40
  "import/namespace": string;
@@ -68,6 +69,7 @@ declare const _default: ({
68
69
  "import/resolver": {
69
70
  typescript: boolean;
70
71
  };
72
+ "import/ignore": string[];
71
73
  };
72
74
  rules: {
73
75
  "import/namespace": string;
@@ -1 +1 @@
1
- {"version":3,"file":"slow.d.ts","sourceRoot":"","sources":["../../../src/configs/eslint/slow.ts"],"names":[],"mappings":"AAeA,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAMlD;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,EAC5B,cAAmB,GACpB,GAAE;IAAE,cAAc,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA0D7C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED,wBAA+B"}
1
+ {"version":3,"file":"slow.d.ts","sourceRoot":"","sources":["../../../src/configs/eslint/slow.ts"],"names":[],"mappings":"AAeA,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAMlD;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,EAC5B,cAAmB,GACpB,GAAE;IAAE,cAAc,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA+D7C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED,wBAA+B"}
@@ -69,12 +69,17 @@ export function getSlowConfig({ ignorePatterns = [], } = {}) {
69
69
  ...(importTypescriptConfig?.settings?.["import/resolver"] ?? {}),
70
70
  typescript: true,
71
71
  },
72
+ // Prevent parse errors from modules that use non-standard JS syntax
73
+ // (e.g. react-native uses Flow types which ESLint's parser cannot handle)
74
+ "import/ignore": ["node_modules", "react-native", "\\.native\\."],
72
75
  },
73
76
  rules: {
74
77
  // ONLY slow rules - everything else runs in the main config
75
78
  "import/namespace": "error",
76
79
  "import/no-cycle": "error",
77
- "sonarjs/deprecation": "error",
80
+ // Off by default: codebase may have existing deprecated API usages.
81
+ // Enable project-by-project once violations are addressed.
82
+ "sonarjs/deprecation": "off",
78
83
  },
79
84
  },
80
85
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"slow.js","sourceRoot":"","sources":["../../../src/configs/eslint/slow.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,QAAQ,MAAM,mBAAmB,CAAC;AAEzC,wDAAwD;AACxD,MAAM,sBAAsB,GAAG,YAAY,CAAC,WAAW,CAAC,UAAU,CAAC;AAEnE;;;;;;GAMG;AACH,MAAM,UAAU,aAAa,CAAC,EAC5B,cAAc,GAAG,EAAE,MACuB,EAAE;IAC5C,OAAO;QACL,gEAAgE;QAChE,iEAAiE;QACjE,yDAAyD;QACzD,mFAAmF;QACnF;YACE,OAAO,EAAE;gBACP,GAAG,cAAc;gBACjB,SAAS;gBACT,UAAU;gBACV,UAAU;gBACV,UAAU;gBACV,iBAAiB;gBACjB,QAAQ;gBACR,SAAS;gBACT,WAAW;gBACX,eAAe;gBACf,gBAAgB;aACjB;SACF;QAED,4CAA4C;QAC5C;YACE,KAAK,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;YAC9B,aAAa,EAAE;gBACb,mEAAmE;gBACnE,iEAAiE;gBACjE,cAAc,EAAE,IAAI;aACrB;YACD,eAAe,EAAE;gBACf,MAAM,EAAE,QAAQ,CAAC,MAAM;gBACvB,aAAa,EAAE;oBACb,OAAO,EAAE,sBAAsB;iBAChC;aACF;YACD,OAAO,EAAE;gBACP,GAAG,CAAC,sBAAsB,EAAE,OAAO,IAAI,EAAE,CAAC;gBAC1C,OAAO,EAAE,aAAa;aACvB;YACD,QAAQ,EAAE;gBACR,GAAG,CAAC,sBAAsB,EAAE,QAAQ,IAAI,EAAE,CAAC;gBAC3C,iBAAiB,EAAE;oBACjB,GAAG,CAAE,sBAAsB,EAAE,QAAQ,EAAE,CAAC,iBAAiB,CAGvD,IAAI,EAAE,CAAC;oBACT,UAAU,EAAE,IAAI;iBACjB;aACF;YACD,KAAK,EAAE;gBACL,4DAA4D;gBAC5D,kBAAkB,EAAE,OAAO;gBAC3B,iBAAiB,EAAE,OAAO;gBAC1B,qBAAqB,EAAE,OAAO;aAC/B;SACF;KACF,CAAC;AACJ,CAAC;AAED,eAAe,aAAa,EAAE,CAAC"}
1
+ {"version":3,"file":"slow.js","sourceRoot":"","sources":["../../../src/configs/eslint/slow.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,QAAQ,MAAM,mBAAmB,CAAC;AAEzC,wDAAwD;AACxD,MAAM,sBAAsB,GAAG,YAAY,CAAC,WAAW,CAAC,UAAU,CAAC;AAEnE;;;;;;GAMG;AACH,MAAM,UAAU,aAAa,CAAC,EAC5B,cAAc,GAAG,EAAE,MACuB,EAAE;IAC5C,OAAO;QACL,gEAAgE;QAChE,iEAAiE;QACjE,yDAAyD;QACzD,mFAAmF;QACnF;YACE,OAAO,EAAE;gBACP,GAAG,cAAc;gBACjB,SAAS;gBACT,UAAU;gBACV,UAAU;gBACV,UAAU;gBACV,iBAAiB;gBACjB,QAAQ;gBACR,SAAS;gBACT,WAAW;gBACX,eAAe;gBACf,gBAAgB;aACjB;SACF;QAED,4CAA4C;QAC5C;YACE,KAAK,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;YAC9B,aAAa,EAAE;gBACb,mEAAmE;gBACnE,iEAAiE;gBACjE,cAAc,EAAE,IAAI;aACrB;YACD,eAAe,EAAE;gBACf,MAAM,EAAE,QAAQ,CAAC,MAAM;gBACvB,aAAa,EAAE;oBACb,OAAO,EAAE,sBAAsB;iBAChC;aACF;YACD,OAAO,EAAE;gBACP,GAAG,CAAC,sBAAsB,EAAE,OAAO,IAAI,EAAE,CAAC;gBAC1C,OAAO,EAAE,aAAa;aACvB;YACD,QAAQ,EAAE;gBACR,GAAG,CAAC,sBAAsB,EAAE,QAAQ,IAAI,EAAE,CAAC;gBAC3C,iBAAiB,EAAE;oBACjB,GAAG,CAAE,sBAAsB,EAAE,QAAQ,EAAE,CAAC,iBAAiB,CAGvD,IAAI,EAAE,CAAC;oBACT,UAAU,EAAE,IAAI;iBACjB;gBACD,oEAAoE;gBACpE,0EAA0E;gBAC1E,eAAe,EAAE,CAAC,cAAc,EAAE,cAAc,EAAE,cAAc,CAAC;aAClE;YACD,KAAK,EAAE;gBACL,4DAA4D;gBAC5D,kBAAkB,EAAE,OAAO;gBAC3B,iBAAiB,EAAE,OAAO;gBAC1B,oEAAoE;gBACpE,2DAA2D;gBAC3D,qBAAqB,EAAE,KAAK;aAC7B;SACF;KACF,CAAC;AACJ,CAAC;AAED,eAAe,aAAa,EAAE,CAAC"}
@@ -26,7 +26,8 @@ import reactPerf from "eslint-plugin-react-perf";
26
26
  import tailwind from "eslint-plugin-tailwindcss";
27
27
  import { createRequire } from "module";
28
28
 
29
- // Import TypeScript config and utilities
29
+ // Import TypeScript config and utilities from the Lisa package
30
+ // (eslint.typescript.ts is no longer deployed to downstream projects)
30
31
  import {
31
32
  codeOrganization,
32
33
  defaultIgnores,
@@ -39,7 +40,7 @@ import {
39
40
  getTestFilesOverride,
40
41
  getTsFilesOverride,
41
42
  getTsTestFilesOverride,
42
- } from "./eslint.typescript";
43
+ } from "@codyswann/lisa/eslint/typescript";
43
44
 
44
45
  // Re-export for downstream configs
45
46
  export {
@@ -31,7 +31,7 @@
31
31
  *
32
32
  * Inheritance chain:
33
33
  * jest.expo.ts (this file)
34
- * └── jest.base.ts
34
+ * └── @codyswann/lisa/jest/base
35
35
  *
36
36
  * @see https://jestjs.io/docs/configuration
37
37
  * @see https://github.com/expo/expo/issues/40184
@@ -44,7 +44,7 @@ import {
44
44
  defaultThresholds,
45
45
  mergeConfigs,
46
46
  mergeThresholds,
47
- } from "./jest.base.ts";
47
+ } from "@codyswann/lisa/jest/base";
48
48
 
49
49
  // Re-export base utilities for entry-point configs
50
50
  export {
package/package.json CHANGED
@@ -71,7 +71,7 @@
71
71
  "axios": ">=1.13.5"
72
72
  },
73
73
  "name": "@codyswann/lisa",
74
- "version": "1.51.1",
74
+ "version": "1.51.3",
75
75
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
76
76
  "main": "dist/index.js",
77
77
  "exports": {