invar-tools 1.17.2__py3-none-any.whl → 1.17.3__py3-none-any.whl
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.
- invar/node_tools/.gitignore +10 -6
- invar/node_tools/eslint-plugin/rules/__tests__/behavior.test.js +1321 -0
- invar/node_tools/eslint-plugin/rules/__tests__/behavior.test.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/e2e-scenarios.test.js +414 -0
- invar/node_tools/eslint-plugin/rules/__tests__/e2e-scenarios.test.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/function-lengths.js +142 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/function-lengths.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/has-io-imports.js +15 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/has-io-imports.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/valid-small.js +27 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/valid-small.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/exported-functions.js +43 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/exported-functions.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/shell/with-io.js +27 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/shell/with-io.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/tests/large.test.js +260 -0
- invar/node_tools/eslint-plugin/rules/__tests__/fixtures/tests/large.test.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/max-file-lines.js +105 -0
- invar/node_tools/eslint-plugin/rules/max-file-lines.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/max-function-lines.js +133 -0
- invar/node_tools/eslint-plugin/rules/max-function-lines.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-any-in-schema.js +39 -0
- invar/node_tools/eslint-plugin/rules/no-any-in-schema.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-empty-schema.js +69 -0
- invar/node_tools/eslint-plugin/rules/no-empty-schema.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-impure-calls-in-core.js +52 -0
- invar/node_tools/eslint-plugin/rules/no-impure-calls-in-core.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-io-in-core.js +99 -0
- invar/node_tools/eslint-plugin/rules/no-io-in-core.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-pure-logic-in-shell.js +197 -0
- invar/node_tools/eslint-plugin/rules/no-pure-logic-in-shell.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-redundant-type-schema.js +99 -0
- invar/node_tools/eslint-plugin/rules/no-redundant-type-schema.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/no-runtime-imports.js +66 -0
- invar/node_tools/eslint-plugin/rules/no-runtime-imports.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/require-complete-validation.js +104 -0
- invar/node_tools/eslint-plugin/rules/require-complete-validation.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/require-jsdoc-example.js +81 -0
- invar/node_tools/eslint-plugin/rules/require-jsdoc-example.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/require-schema-validation.js +308 -0
- invar/node_tools/eslint-plugin/rules/require-schema-validation.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/shell-complexity.js +273 -0
- invar/node_tools/eslint-plugin/rules/shell-complexity.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/shell-result-type.js +138 -0
- invar/node_tools/eslint-plugin/rules/shell-result-type.js.map +1 -0
- invar/node_tools/eslint-plugin/rules/thin-entry-points.js +174 -0
- invar/node_tools/eslint-plugin/rules/thin-entry-points.js.map +1 -0
- invar/node_tools/eslint-plugin/utils/layer-detection.js +91 -0
- invar/node_tools/eslint-plugin/utils/layer-detection.js.map +1 -0
- invar/node_tools/eslint-plugin/utils/math-example.js +31 -0
- invar/node_tools/eslint-plugin/utils/math-example.js.map +1 -0
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/METADATA +1 -1
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/RECORD +58 -8
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/WHEEL +0 -0
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/entry_points.txt +0 -0
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/licenses/LICENSE +0 -0
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/licenses/LICENSE-GPL +0 -0
- {invar_tools-1.17.2.dist-info → invar_tools-1.17.3.dist-info}/licenses/NOTICE +0 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Layer Detection Utilities
|
|
3
|
+
*
|
|
4
|
+
* Detects which architectural layer a file belongs to:
|
|
5
|
+
* - Core: Pure logic, strict limits
|
|
6
|
+
* - Shell: I/O operations, relaxed limits
|
|
7
|
+
* - Tests: Test files, most relaxed limits
|
|
8
|
+
* - Default: Other files
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Default limits for each layer (LX-10).
|
|
12
|
+
*
|
|
13
|
+
* TypeScript limits = Python limits × 1.3 (due to type overhead).
|
|
14
|
+
* - Python Core: 500/50 → TypeScript Core: 650/65
|
|
15
|
+
* - Python Shell: 700/100 → TypeScript Shell: 910/130
|
|
16
|
+
* - Python Tests: 1000/200 → TypeScript Tests: 1300/260
|
|
17
|
+
* - Python Default: 600/80 → TypeScript Default: 780/104
|
|
18
|
+
*/
|
|
19
|
+
export const LAYER_LIMITS = {
|
|
20
|
+
core: {
|
|
21
|
+
maxFileLines: 650,
|
|
22
|
+
maxFunctionLines: 65,
|
|
23
|
+
},
|
|
24
|
+
shell: {
|
|
25
|
+
maxFileLines: 910,
|
|
26
|
+
maxFunctionLines: 130,
|
|
27
|
+
},
|
|
28
|
+
tests: {
|
|
29
|
+
maxFileLines: 1300,
|
|
30
|
+
maxFunctionLines: 260,
|
|
31
|
+
},
|
|
32
|
+
default: {
|
|
33
|
+
maxFileLines: 780,
|
|
34
|
+
maxFunctionLines: 104,
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Detect layer from filename.
|
|
39
|
+
*
|
|
40
|
+
* Priority: tests > core > shell > default
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* getLayer('/project/src/core/parser.ts') // => 'core'
|
|
44
|
+
* getLayer('/project/tests/parser.test.ts') // => 'tests'
|
|
45
|
+
* getLayer('/project/src/shell/io.ts') // => 'shell'
|
|
46
|
+
*/
|
|
47
|
+
export function getLayer(filename) {
|
|
48
|
+
const normalized = filename.replace(/\\/g, '/').toLowerCase();
|
|
49
|
+
// Priority 1: Test files
|
|
50
|
+
if (normalized.includes('/test/') ||
|
|
51
|
+
normalized.includes('/tests/') ||
|
|
52
|
+
normalized.includes('/__tests__/') ||
|
|
53
|
+
normalized.endsWith('.test.ts') ||
|
|
54
|
+
normalized.endsWith('.test.tsx') ||
|
|
55
|
+
normalized.endsWith('.test.js') ||
|
|
56
|
+
normalized.endsWith('.test.jsx') ||
|
|
57
|
+
normalized.endsWith('.spec.ts') ||
|
|
58
|
+
normalized.endsWith('.spec.tsx') ||
|
|
59
|
+
normalized.endsWith('.spec.js') ||
|
|
60
|
+
normalized.endsWith('.spec.jsx')) {
|
|
61
|
+
return 'tests';
|
|
62
|
+
}
|
|
63
|
+
// Priority 2: Core layer
|
|
64
|
+
// Use path segment matching to avoid false positives like '/hardcore/'
|
|
65
|
+
if (normalized.includes('/core/') ||
|
|
66
|
+
normalized.endsWith('/core') ||
|
|
67
|
+
normalized.startsWith('core/')) {
|
|
68
|
+
return 'core';
|
|
69
|
+
}
|
|
70
|
+
// Priority 3: Shell layer
|
|
71
|
+
// Use path segment matching to avoid false positives like '/eggshell/'
|
|
72
|
+
if (normalized.includes('/shell/') ||
|
|
73
|
+
normalized.endsWith('/shell') ||
|
|
74
|
+
normalized.startsWith('shell/')) {
|
|
75
|
+
return 'shell';
|
|
76
|
+
}
|
|
77
|
+
// Default layer
|
|
78
|
+
return 'default';
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Get limits for a filename.
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* getLimits('/project/src/core/parser.ts')
|
|
85
|
+
* // => { maxFileLines: 650, maxFunctionLines: 65 }
|
|
86
|
+
*/
|
|
87
|
+
export function getLimits(filename) {
|
|
88
|
+
const layer = getLayer(filename);
|
|
89
|
+
return LAYER_LIMITS[layer];
|
|
90
|
+
}
|
|
91
|
+
//# sourceMappingURL=layer-detection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"layer-detection.js","sourceRoot":"","sources":["../../src/utils/layer-detection.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AASH;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,YAAY,GAA+B;IACtD,IAAI,EAAE;QACJ,YAAY,EAAE,GAAG;QACjB,gBAAgB,EAAE,EAAE;KACrB;IACD,KAAK,EAAE;QACL,YAAY,EAAE,GAAG;QACjB,gBAAgB,EAAE,GAAG;KACtB;IACD,KAAK,EAAE;QACL,YAAY,EAAE,IAAI;QAClB,gBAAgB,EAAE,GAAG;KACtB;IACD,OAAO,EAAE;QACP,YAAY,EAAE,GAAG;QACjB,gBAAgB,EAAE,GAAG;KACtB;CACF,CAAC;AAEF;;;;;;;;;GASG;AACH,MAAM,UAAU,QAAQ,CAAC,QAAgB;IACvC,MAAM,UAAU,GAAG,QAAQ,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC;IAE9D,yBAAyB;IACzB,IACE,UAAU,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAC7B,UAAU,CAAC,QAAQ,CAAC,SAAS,CAAC;QAC9B,UAAU,CAAC,QAAQ,CAAC,aAAa,CAAC;QAClC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC;QAC/B,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC;QAChC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC;QAC/B,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC;QAChC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC;QAC/B,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC;QAChC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC;QAC/B,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC,EAChC,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,yBAAyB;IACzB,uEAAuE;IACvE,IACE,UAAU,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAC7B,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC;QAC5B,UAAU,CAAC,UAAU,CAAC,OAAO,CAAC,EAC9B,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,0BAA0B;IAC1B,uEAAuE;IACvE,IACE,UAAU,CAAC,QAAQ,CAAC,SAAS,CAAC;QAC9B,UAAU,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAC7B,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,EAC/B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,gBAAgB;IAChB,OAAO,SAAS,CAAC;AACnB,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,SAAS,CAAC,QAAgB;IACxC,MAAM,KAAK,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACjC,OAAO,YAAY,CAAC,KAAK,CAAC,CAAC;AAC7B,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Multiply two numbers together.
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* multiply(2, 3) // => 6
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* multiply(0, 100) // => 0
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* multiply(-2, 5) // => -10
|
|
12
|
+
*/
|
|
13
|
+
export function multiply(a, b) {
|
|
14
|
+
return a * b;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Add two numbers together.
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* add(2, 3) // => 5
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* add(-1, 1) // => 0
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* add(2, 2) // => 4
|
|
27
|
+
*/
|
|
28
|
+
export function add(a, b) {
|
|
29
|
+
return a + b;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=math-example.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"math-example.js","sourceRoot":"","sources":["../../src/utils/math-example.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,QAAQ,CAAC,CAAS,EAAE,CAAS;IAC3C,OAAO,CAAC,GAAG,CAAC,CAAC;AACf,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,GAAG,CAAC,CAAS,EAAE,CAAS;IACtC,OAAO,CAAC,GAAG,CAAC,CAAC;AACf,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invar-tools
|
|
3
|
-
Version: 1.17.
|
|
3
|
+
Version: 1.17.3
|
|
4
4
|
Summary: AI-native software engineering tools with design-by-contract verification
|
|
5
5
|
Project-URL: Homepage, https://github.com/tefx/invar
|
|
6
6
|
Project-URL: Documentation, https://github.com/tefx/invar#readme
|
|
@@ -52,7 +52,7 @@ invar/mcp/__init__.py,sha256=n3S7QwMjSMqOMT8cI2jf9E0yZPjKmBOJyIYhq4WZ8TQ,226
|
|
|
52
52
|
invar/mcp/__main__.py,sha256=ZcIT2U6xUyGOWucl4jq422BDE3lRLjqyxb9pFylRBdk,219
|
|
53
53
|
invar/mcp/handlers.py,sha256=Kls1aXnYmGcMvib_Mesfz5FjBaL7lmrhKaw_P2JDnyw,16551
|
|
54
54
|
invar/mcp/server.py,sha256=WmVNs2_AcOMbmp3tEgWR57hjqqJkMx3nV3z9fcNuSAA,20109
|
|
55
|
-
invar/node_tools/.gitignore,sha256=
|
|
55
|
+
invar/node_tools/.gitignore,sha256=M2kz8Iw7Kzmi44mKo1r7_HOZMh79a7dFDdRrqXyaEhI,530
|
|
56
56
|
invar/node_tools/MANIFEST,sha256=2Z2at-27MK8K7DSjOjjtR4faTbt6eCiKQuEfvP_lwH8,145
|
|
57
57
|
invar/node_tools/__init__.py,sha256=HzILh3jtP28Lm2jZwss1SY65ECxbtw2J2uFpXQA6Y94,1740
|
|
58
58
|
invar/node_tools/ts-query.js,sha256=fEc_f0JT_Mb18dEoA4_vJoazvd7Lqv_rsed4eHSAbCg,13303
|
|
@@ -2594,6 +2594,56 @@ invar/node_tools/eslint-plugin/node_modules/yocto-queue/index.js,sha256=A0I9LFq6
|
|
|
2594
2594
|
invar/node_tools/eslint-plugin/node_modules/yocto-queue/license,sha256=XJMtiCVrSrlY9kqFb6SOi9H1W8HZa4FJxlaJ4MYXidM,1117
|
|
2595
2595
|
invar/node_tools/eslint-plugin/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
2596
2596
|
invar/node_tools/eslint-plugin/node_modules/yocto-queue/readme.md,sha256=rfWnHVL8T6u1HAmqZ9WPj2G6oTjG0HBbGoBZWPDFhKU,2096
|
|
2597
|
+
invar/node_tools/eslint-plugin/rules/max-file-lines.js,sha256=UpvTYmI_e0SedKCyzAkx1ZbRSiAkbbACmwNLOyjJHDI,4036
|
|
2598
|
+
invar/node_tools/eslint-plugin/rules/max-file-lines.js.map,sha256=XmXWsVlDt-M9r9cbN-ef_94XWNiYchOgTfF_VpAueh4,2631
|
|
2599
|
+
invar/node_tools/eslint-plugin/rules/max-function-lines.js,sha256=cphnqCRu7ttbEA4s8RhLnPJ9Xop6Gu3S4hQbKmv2xh0,4801
|
|
2600
|
+
invar/node_tools/eslint-plugin/rules/max-function-lines.js.map,sha256=U9lNUhJh8fZxDPsmrqfTYeC5XxsPpXcods1oC3rNlHg,3462
|
|
2601
|
+
invar/node_tools/eslint-plugin/rules/no-any-in-schema.js,sha256=iwnOpt46j6vVZ-_UE6QxQvbzNqDu0RjLjS-T4LNRsW0,1161
|
|
2602
|
+
invar/node_tools/eslint-plugin/rules/no-any-in-schema.js.map,sha256=gcyGufNyq-yg3vHXyERVtFDWuudAfrUnnAiTlUXP570,827
|
|
2603
|
+
invar/node_tools/eslint-plugin/rules/no-empty-schema.js,sha256=9cOvqoNfEJqFzPY2IFlil40JvsAoSNNbKm6JYCMSzXU,2665
|
|
2604
|
+
invar/node_tools/eslint-plugin/rules/no-empty-schema.js.map,sha256=LN3odR5hiItX5Xsx-cx3tp_puTf6OJTh1_w4GvzZ4ro,1630
|
|
2605
|
+
invar/node_tools/eslint-plugin/rules/no-impure-calls-in-core.js,sha256=cj-pkOYyOcdpiW2KFL2VdnElLsprCX8zkBh_OtrZgDQ,1871
|
|
2606
|
+
invar/node_tools/eslint-plugin/rules/no-impure-calls-in-core.js.map,sha256=AVjJyCG9wcDY49Et-98nFZWMkRoaBnHMNKQ7YdqJvZc,1140
|
|
2607
|
+
invar/node_tools/eslint-plugin/rules/no-io-in-core.js,sha256=GuLL2q4JQw48AMmm2bxIv6pb4wxoI5GW3wKWvNg4g-M,2828
|
|
2608
|
+
invar/node_tools/eslint-plugin/rules/no-io-in-core.js.map,sha256=24czZgT72KDPOgLLaU7XD-xWOGYtdnZ954NIg57Mppc,2142
|
|
2609
|
+
invar/node_tools/eslint-plugin/rules/no-pure-logic-in-shell.js,sha256=odeFcMdoGbT7btwRMRmKKe8AZbtj_t356aI0rLKoxF8,7204
|
|
2610
|
+
invar/node_tools/eslint-plugin/rules/no-pure-logic-in-shell.js.map,sha256=d69VN2b5spFdKgt6BTA1lPir1Ivic3Y86mzrvp9yhX4,4323
|
|
2611
|
+
invar/node_tools/eslint-plugin/rules/no-redundant-type-schema.js,sha256=vf8V7_T5-oZetb3WjHslwOg9R6TDjFzRJGUb5lIpMR0,4282
|
|
2612
|
+
invar/node_tools/eslint-plugin/rules/no-redundant-type-schema.js.map,sha256=EVxgRb6jWXsaJPE4nJpZBA72suG3kPyE637VdrHomdg,2758
|
|
2613
|
+
invar/node_tools/eslint-plugin/rules/no-runtime-imports.js,sha256=GxlLKHzid3eSbO5NOkrJi0KH_SGHZQWa22gcR22hClk,2297
|
|
2614
|
+
invar/node_tools/eslint-plugin/rules/no-runtime-imports.js.map,sha256=9bpNyMo9l3mIChn1sTWh40_dVYRaopUnUrnncvWEpmE,1348
|
|
2615
|
+
invar/node_tools/eslint-plugin/rules/require-complete-validation.js,sha256=ZGeAElzcIHsnNdMNb9wHShb8irCTkUhOBg-KIhV2Mes,3943
|
|
2616
|
+
invar/node_tools/eslint-plugin/rules/require-complete-validation.js.map,sha256=UhEr4fql0TObHt3ya8DydqbFlig5CSDFKIIJZSf74rA,2497
|
|
2617
|
+
invar/node_tools/eslint-plugin/rules/require-jsdoc-example.js,sha256=Ad_TUhE_ly7H_hXR-9z4-8Pljm4gzO3-ikrKlyrR8Qw,3251
|
|
2618
|
+
invar/node_tools/eslint-plugin/rules/require-jsdoc-example.js.map,sha256=uKqyODyMkvGigg15kee440mhn34BXZny2PtGzJL4vww,2216
|
|
2619
|
+
invar/node_tools/eslint-plugin/rules/require-schema-validation.js,sha256=gdJaRr9-j8ZmUr8-u_MnafeQ4I92OoIq3RzUXeqrpBg,12372
|
|
2620
|
+
invar/node_tools/eslint-plugin/rules/require-schema-validation.js.map,sha256=akTSZQq-OC6ZvwMklIBRaxsesJ9w6GHaPhRTJ_ihmaE,8211
|
|
2621
|
+
invar/node_tools/eslint-plugin/rules/shell-complexity.js,sha256=Bhc9i7ILYMNNAUvxf9l7PlwhC_Neb69Jl1nUNABu2jg,11260
|
|
2622
|
+
invar/node_tools/eslint-plugin/rules/shell-complexity.js.map,sha256=0oJoDxXpXg2VTrwGMa-UDZ6te15Sv9vq-LgwWjJB5Q4,7140
|
|
2623
|
+
invar/node_tools/eslint-plugin/rules/shell-result-type.js,sha256=_Qa56cltufODvYWvwk95ClnTVi7GCZwrFRS_pAxMH40,5018
|
|
2624
|
+
invar/node_tools/eslint-plugin/rules/shell-result-type.js.map,sha256=9v70u0btd440PGm2uzjenzJZ7n0thOY8O2Kh8_jy7WY,3505
|
|
2625
|
+
invar/node_tools/eslint-plugin/rules/thin-entry-points.js,sha256=_mR9OjUM60Ibd6jHTC66sK3jh1G9Zvv75pB2A9wIsVI,7474
|
|
2626
|
+
invar/node_tools/eslint-plugin/rules/thin-entry-points.js.map,sha256=SviSkTYZJpQh170_cqVsqCNX_Kb_bfXUPx1iv1KYRjQ,4546
|
|
2627
|
+
invar/node_tools/eslint-plugin/rules/__tests__/behavior.test.js,sha256=vVbNLBlMxfUKRu4VqmAEZL2PyszBpV4zdI-KaYAeAbc,46153
|
|
2628
|
+
invar/node_tools/eslint-plugin/rules/__tests__/behavior.test.js.map,sha256=8fmKAURaFrL94zWKv9FY0MJxAe8SsA-J5hXFi-7Q1zY,24028
|
|
2629
|
+
invar/node_tools/eslint-plugin/rules/__tests__/e2e-scenarios.test.js,sha256=TzZh0koQLjNAQCuZ10xX4G9vr5Sx0cwU8TxJvg80DlI,15176
|
|
2630
|
+
invar/node_tools/eslint-plugin/rules/__tests__/e2e-scenarios.test.js.map,sha256=qSoqS-LKyuruILbr9ifljGIXup1gCw7jE-vKz4qCB2Q,5543
|
|
2631
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/exported-functions.js,sha256=IX6M8WLbh9SHnyeR_LOnAefytAHneoeRGwtx8W7pbgA,917
|
|
2632
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/exported-functions.js.map,sha256=iWANZtMzbuyfTurCuxJHI7oyxkNUfcAlT73gHo0z_jY,621
|
|
2633
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/function-lengths.js,sha256=5NQwJMXTqz9NEVLQpTKw12uSN7tG9UUY2AL9009UoP0,2765
|
|
2634
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/function-lengths.js.map,sha256=yOPff0TDS5nF1FPmtnxex0f1HsyRFaqFY6vwZiq94dM,3949
|
|
2635
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/has-io-imports.js,sha256=HUbi1HO4IWikd1AKGe73zaubCija1Ry7ga5oVehZgSo,392
|
|
2636
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/has-io-imports.js.map,sha256=ZyoMSaEUP2HFnRD7QgHKwkoLin21R0-8yAGt0mPN35Y,332
|
|
2637
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/valid-small.js,sha256=HUCHklyeTmD22zYz7qbPiRakVgO6ndiU2jUZmEd2bek,493
|
|
2638
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/core/valid-small.js.map,sha256=8CG7SnU4oQHFeFFtSVYPvg60NbaB4pBZ8SJdkMetWZE,436
|
|
2639
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/shell/with-io.js,sha256=a4X5AR48mqrkIqBKzLFwvZ7z_GH3vUPU1ZMI2K7bGbw,676
|
|
2640
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/shell/with-io.js.map,sha256=BFNEM57wHqatf_ljTpnarOn0EO_NFS7m4wDk3CMhBT8,575
|
|
2641
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/tests/large.test.js,sha256=XrrIrRSLbMYseu77-fXFkYW7Rsor1MiLNchWU71lFRc,6609
|
|
2642
|
+
invar/node_tools/eslint-plugin/rules/__tests__/fixtures/tests/large.test.js.map,sha256=iQ3v5eFK5aohl3eS6WyUWqiXOu3Q4-0pIrLxclUNsSg,10451
|
|
2643
|
+
invar/node_tools/eslint-plugin/utils/layer-detection.js,sha256=uzZfWtjsuZjy5vYz_94BxxDeNg32VZeparqthsuijB0,2722
|
|
2644
|
+
invar/node_tools/eslint-plugin/utils/layer-detection.js.map,sha256=bJ-AZeU9Urh13hA5JGPF4r5cjr2wnbpCIhdZn5_x1gU,1591
|
|
2645
|
+
invar/node_tools/eslint-plugin/utils/math-example.js,sha256=LUl7lPlVK9hW9RpfAl3laEDlqWb6aVXda8er44bWpoM,457
|
|
2646
|
+
invar/node_tools/eslint-plugin/utils/math-example.js.map,sha256=UR2zrFklTl347aXIOwAd4Z6VdhWpxApsz7Gpi1l9cyk,326
|
|
2597
2647
|
invar/node_tools/fc-runner/bundle.js,sha256=D1wDqXYDOwWU4eqXeZdLIFvSsJ36q56Ay_ipLdklQPw,243285
|
|
2598
2648
|
invar/node_tools/fc-runner/cli.d.ts,sha256=UM1WM4OKVvABXIsTHt6VHdO_oQMlgltUFV6CIqeh1B0,294
|
|
2599
2649
|
invar/node_tools/fc-runner/cli.d.ts.map,sha256=-R1m4uJf2vmDZEpU7pEaib6TVjd0YuQnTQEGwkN6I9Q,117
|
|
@@ -2728,10 +2778,10 @@ invar/templates/skills/invar-reflect/template.md,sha256=Rr5hvbllvmd8jSLf_0ZjyKt6
|
|
|
2728
2778
|
invar/templates/skills/investigate/SKILL.md.jinja,sha256=cp6TBEixBYh1rLeeHOR1yqEnFqv1NZYePORMnavLkQI,3231
|
|
2729
2779
|
invar/templates/skills/propose/SKILL.md.jinja,sha256=6BuKiCqO1AEu3VtzMHy1QWGqr_xqG9eJlhbsKT4jev4,3463
|
|
2730
2780
|
invar/templates/skills/review/SKILL.md.jinja,sha256=ET5mbdSe_eKgJbi2LbgFC-z1aviKcHOBw7J5Q28fr4U,14105
|
|
2731
|
-
invar_tools-1.17.
|
|
2732
|
-
invar_tools-1.17.
|
|
2733
|
-
invar_tools-1.17.
|
|
2734
|
-
invar_tools-1.17.
|
|
2735
|
-
invar_tools-1.17.
|
|
2736
|
-
invar_tools-1.17.
|
|
2737
|
-
invar_tools-1.17.
|
|
2781
|
+
invar_tools-1.17.3.dist-info/METADATA,sha256=4TzQBnzpS5lncpGXpZwTGRwwGg-OG4UB_OYIBOdte4E,28595
|
|
2782
|
+
invar_tools-1.17.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
2783
|
+
invar_tools-1.17.3.dist-info/entry_points.txt,sha256=RwH_EhqgtFPsnO6RcrwrAb70Zyfb8Mh6uUtztWnUxGk,102
|
|
2784
|
+
invar_tools-1.17.3.dist-info/licenses/LICENSE,sha256=qeFksp4H4kfTgQxPCIu3OdagXyiZcgBlVfsQ6M5oFyk,10767
|
|
2785
|
+
invar_tools-1.17.3.dist-info/licenses/LICENSE-GPL,sha256=IvZfC6ZbP7CLjytoHVzvpDZpD-Z3R_qa1GdMdWlWQ6Q,35157
|
|
2786
|
+
invar_tools-1.17.3.dist-info/licenses/NOTICE,sha256=joEyMyFhFY8Vd8tTJ-a3SirI0m2Sd0WjzqYt3sdcglc,2561
|
|
2787
|
+
invar_tools-1.17.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|