@monorepolint/rules 0.6.0-alpha.3 → 0.6.0-alpha.4
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/.turbo/turbo-clean.log +1 -1
- package/.turbo/turbo-compile-typescript.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +73 -74
- package/.turbo/turbo-transpile-typescript.log +4 -4
- package/CHANGELOG.md +10 -0
- package/build/js/index.js +104 -69
- package/build/js/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/bannedDependencies.d.ts.map +1 -1
- package/build/types/forceError.d.ts +4 -0
- package/build/types/forceError.d.ts.map +1 -0
- package/build/types/index.d.ts +2 -0
- package/build/types/index.d.ts.map +1 -1
- package/build/types/mustSatisfyPeerDependencies.d.ts.map +1 -1
- package/build/types/nestedWorkspaces.d.ts.map +1 -1
- package/build/types/oncePerPackage.d.ts +11 -0
- package/build/types/oncePerPackage.d.ts.map +1 -0
- package/build/types/requireDependency.d.ts.map +1 -1
- package/build/types/util/packageDependencyGraphService.d.ts.map +1 -1
- package/coverage/clover.xml +516 -469
- package/coverage/coverage-final.json +12 -10
- package/coverage/index.html +15 -15
- package/coverage/src/alphabeticalDependencies.ts.html +6 -6
- package/coverage/src/alphabeticalScripts.ts.html +1 -1
- package/coverage/src/bannedDependencies.ts.html +7 -10
- package/coverage/src/consistentDependencies.ts.html +7 -13
- package/coverage/src/consistentVersions.ts.html +31 -46
- package/coverage/src/fileContents.ts.html +1 -1
- package/coverage/src/forceError.ts.html +184 -0
- package/coverage/src/index.html +73 -43
- package/coverage/src/index.ts.html +10 -4
- package/coverage/src/mustSatisfyPeerDependencies.ts.html +16 -61
- package/coverage/src/nestedWorkspaces.ts.html +10 -22
- package/coverage/src/oncePerPackage.ts.html +181 -0
- package/coverage/src/packageEntry.ts.html +1 -1
- package/coverage/src/packageOrder.ts.html +1 -1
- package/coverage/src/packageScript.ts.html +1 -1
- package/coverage/src/requireDependency.ts.html +7 -13
- package/coverage/src/standardTsconfig.ts.html +6 -6
- package/coverage/src/util/checkAlpha.ts.html +1 -1
- package/coverage/src/util/createRuleFactory.ts.html +1 -1
- package/coverage/src/util/index.html +10 -10
- package/coverage/src/util/makeDirectory.ts.html +1 -1
- package/coverage/src/util/packageDependencyGraphService.ts.html +7 -13
- package/package.json +4 -4
- package/src/__tests__/fileContents.spec.ts +1 -5
- package/src/__tests__/nestedWorkspaces.spec.ts +1 -2
- package/src/__tests__/packageEntry.spec.ts +1 -6
- package/src/__tests__/packageOrder.spec.ts +1 -6
- package/src/__tests__/packageScript.spec.ts +1 -6
- package/src/bannedDependencies.ts +1 -2
- package/src/consistentDependencies.ts +1 -3
- package/src/consistentVersions.ts +24 -29
- package/src/forceError.ts +33 -0
- package/src/index.ts +2 -0
- package/src/mustSatisfyPeerDependencies.ts +10 -25
- package/src/nestedWorkspaces.ts +4 -8
- package/src/oncePerPackage.ts +32 -0
- package/src/requireDependency.ts +1 -3
- package/src/util/packageDependencyGraphService.ts +1 -3
- package/vitest.config.mjs +1 -5
package/coverage/clover.xml
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1738357208085" clover="3.2.0">
|
|
3
|
+
<project timestamp="1738357208085" name="All files">
|
|
4
|
+
<metrics statements="1862" coveredstatements="1762" conditionals="332" coveredconditionals="292" methods="59" coveredmethods="55" elements="2253" coveredelements="2109" complexity="0" loc="1862" ncloc="1862" packages="2" files="20" classes="20"/>
|
|
5
5
|
<package name="src">
|
|
6
|
-
<metrics statements="
|
|
6
|
+
<metrics statements="1707" coveredstatements="1619" conditionals="302" coveredconditionals="268" methods="48" coveredmethods="44"/>
|
|
7
7
|
<file name="alphabeticalDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/alphabeticalDependencies.ts">
|
|
8
|
-
<metrics statements="
|
|
8
|
+
<metrics statements="18" coveredstatements="18" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
9
9
|
<line num="1" count="1" type="stmt"/>
|
|
10
|
+
<line num="3" count="1" type="stmt"/>
|
|
11
|
+
<line num="4" count="1" type="stmt"/>
|
|
12
|
+
<line num="5" count="1" type="stmt"/>
|
|
10
13
|
<line num="6" count="1" type="stmt"/>
|
|
11
14
|
<line num="7" count="1" type="stmt"/>
|
|
12
15
|
<line num="8" count="1" type="stmt"/>
|
|
@@ -36,7 +39,7 @@
|
|
|
36
39
|
<line num="17" count="1" type="stmt"/>
|
|
37
40
|
</file>
|
|
38
41
|
<file name="bannedDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/bannedDependencies.ts">
|
|
39
|
-
<metrics statements="
|
|
42
|
+
<metrics statements="135" coveredstatements="131" conditionals="30" coveredconditionals="23" methods="6" coveredmethods="5"/>
|
|
40
43
|
<line num="1" count="1" type="stmt"/>
|
|
41
44
|
<line num="9" count="1" type="stmt"/>
|
|
42
45
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -106,76 +109,75 @@
|
|
|
106
109
|
<line num="97" count="8" type="stmt"/>
|
|
107
110
|
<line num="98" count="8" type="stmt"/>
|
|
108
111
|
<line num="99" count="8" type="stmt"/>
|
|
109
|
-
<line num="100" count="8" type="
|
|
110
|
-
<line num="101" count="8" type="
|
|
112
|
+
<line num="100" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
113
|
+
<line num="101" count="8" type="stmt"/>
|
|
111
114
|
<line num="102" count="8" type="stmt"/>
|
|
112
115
|
<line num="103" count="8" type="stmt"/>
|
|
113
|
-
<line num="
|
|
114
|
-
<line num="106" count="
|
|
116
|
+
<line num="105" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
117
|
+
<line num="106" count="1" type="stmt"/>
|
|
115
118
|
<line num="107" count="1" type="stmt"/>
|
|
116
119
|
<line num="108" count="1" type="stmt"/>
|
|
117
120
|
<line num="109" count="1" type="stmt"/>
|
|
118
121
|
<line num="110" count="1" type="stmt"/>
|
|
119
122
|
<line num="111" count="1" type="stmt"/>
|
|
120
123
|
<line num="112" count="1" type="stmt"/>
|
|
121
|
-
<line num="
|
|
124
|
+
<line num="114" count="13" type="stmt"/>
|
|
122
125
|
<line num="115" count="13" type="stmt"/>
|
|
123
|
-
<line num="116" count="
|
|
126
|
+
<line num="116" count="1" type="stmt"/>
|
|
124
127
|
<line num="117" count="1" type="stmt"/>
|
|
125
|
-
<line num="118" count="
|
|
128
|
+
<line num="118" count="0" type="stmt"/>
|
|
126
129
|
<line num="119" count="0" type="stmt"/>
|
|
127
|
-
<line num="120" count="
|
|
128
|
-
<line num="
|
|
129
|
-
<line num="123" count="3" type="
|
|
130
|
+
<line num="120" count="1" type="stmt"/>
|
|
131
|
+
<line num="122" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
132
|
+
<line num="123" count="3" type="stmt"/>
|
|
130
133
|
<line num="124" count="3" type="stmt"/>
|
|
131
134
|
<line num="125" count="3" type="stmt"/>
|
|
132
135
|
<line num="126" count="3" type="stmt"/>
|
|
133
|
-
<line num="127" count="3" type="
|
|
134
|
-
<line num="128" count="
|
|
135
|
-
<line num="129" count="
|
|
136
|
+
<line num="127" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
137
|
+
<line num="128" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
138
|
+
<line num="129" count="2" type="stmt"/>
|
|
136
139
|
<line num="130" count="2" type="stmt"/>
|
|
137
|
-
<line num="131" count="
|
|
138
|
-
<line num="132" count="
|
|
139
|
-
<line num="
|
|
140
|
-
<line num="135" count="9" type="
|
|
140
|
+
<line num="131" count="6" type="stmt"/>
|
|
141
|
+
<line num="132" count="3" type="stmt"/>
|
|
142
|
+
<line num="134" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
143
|
+
<line num="135" count="9" type="stmt"/>
|
|
141
144
|
<line num="136" count="9" type="stmt"/>
|
|
142
145
|
<line num="137" count="9" type="stmt"/>
|
|
143
146
|
<line num="138" count="9" type="stmt"/>
|
|
144
|
-
<line num="139" count="9" type="
|
|
145
|
-
<line num="140" count="
|
|
146
|
-
<line num="141" count="
|
|
147
|
+
<line num="139" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
148
|
+
<line num="140" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
149
|
+
<line num="141" count="6" type="stmt"/>
|
|
147
150
|
<line num="142" count="6" type="stmt"/>
|
|
148
|
-
<line num="143" count="
|
|
149
|
-
<line num="144" count="
|
|
150
|
-
<line num="
|
|
151
|
-
<line num="148" count="1" type="
|
|
151
|
+
<line num="143" count="18" type="stmt"/>
|
|
152
|
+
<line num="144" count="9" type="stmt"/>
|
|
153
|
+
<line num="147" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
154
|
+
<line num="148" count="1" type="stmt"/>
|
|
152
155
|
<line num="149" count="1" type="stmt"/>
|
|
153
156
|
<line num="150" count="1" type="stmt"/>
|
|
154
157
|
<line num="151" count="1" type="stmt"/>
|
|
155
158
|
<line num="152" count="1" type="stmt"/>
|
|
156
|
-
<line num="153" count="1" type="
|
|
157
|
-
<line num="154" count="
|
|
158
|
-
<line num="155" count="
|
|
159
|
-
<line num="
|
|
159
|
+
<line num="153" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
160
|
+
<line num="154" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
161
|
+
<line num="155" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
162
|
+
<line num="157" count="2" type="stmt"/>
|
|
160
163
|
<line num="158" count="2" type="stmt"/>
|
|
161
164
|
<line num="159" count="2" type="stmt"/>
|
|
162
165
|
<line num="160" count="2" type="stmt"/>
|
|
163
166
|
<line num="161" count="2" type="stmt"/>
|
|
164
|
-
<line num="
|
|
167
|
+
<line num="163" count="2" type="stmt"/>
|
|
165
168
|
<line num="164" count="2" type="stmt"/>
|
|
166
169
|
<line num="165" count="2" type="stmt"/>
|
|
167
170
|
<line num="166" count="2" type="stmt"/>
|
|
168
171
|
<line num="167" count="2" type="stmt"/>
|
|
169
|
-
<line num="168" count="
|
|
170
|
-
<line num="169" count="
|
|
171
|
-
<line num="170" count="
|
|
172
|
-
<line num="
|
|
173
|
-
<line num="173" count="3" type="
|
|
172
|
+
<line num="168" count="4" type="stmt"/>
|
|
173
|
+
<line num="169" count="5" type="stmt"/>
|
|
174
|
+
<line num="170" count="1" type="stmt"/>
|
|
175
|
+
<line num="172" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
176
|
+
<line num="173" count="3" type="stmt"/>
|
|
174
177
|
<line num="174" count="3" type="stmt"/>
|
|
175
|
-
<line num="175" count="3" type="stmt"/>
|
|
176
178
|
</file>
|
|
177
179
|
<file name="consistentDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/consistentDependencies.ts">
|
|
178
|
-
<metrics statements="
|
|
180
|
+
<metrics statements="77" coveredstatements="75" conditionals="17" coveredconditionals="16" methods="5" coveredmethods="5"/>
|
|
179
181
|
<line num="1" count="1" type="stmt"/>
|
|
180
182
|
<line num="9" count="1" type="stmt"/>
|
|
181
183
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -248,16 +250,14 @@
|
|
|
248
250
|
<line num="92" count="1" type="stmt"/>
|
|
249
251
|
<line num="93" count="1" type="stmt"/>
|
|
250
252
|
<line num="95" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
251
|
-
<line num="96" count="1" type="
|
|
252
|
-
<line num="97" count="
|
|
253
|
-
<line num="98" count="
|
|
254
|
-
<line num="
|
|
255
|
-
<line num="
|
|
256
|
-
<line num="102" count="1" type="stmt"/>
|
|
257
|
-
<line num="103" count="1" type="stmt"/>
|
|
253
|
+
<line num="96" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
254
|
+
<line num="97" count="0" type="stmt"/>
|
|
255
|
+
<line num="98" count="0" type="stmt"/>
|
|
256
|
+
<line num="100" count="1" type="stmt"/>
|
|
257
|
+
<line num="101" count="1" type="stmt"/>
|
|
258
258
|
</file>
|
|
259
259
|
<file name="consistentVersions.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/consistentVersions.ts">
|
|
260
|
-
<metrics statements="
|
|
260
|
+
<metrics statements="154" coveredstatements="146" conditionals="22" coveredconditionals="20" methods="5" coveredmethods="5"/>
|
|
261
261
|
<line num="1" count="1" type="stmt"/>
|
|
262
262
|
<line num="9" count="1" type="stmt"/>
|
|
263
263
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -327,96 +327,91 @@
|
|
|
327
327
|
<line num="81" count="2" type="stmt"/>
|
|
328
328
|
<line num="82" count="2" type="stmt"/>
|
|
329
329
|
<line num="83" count="2" type="stmt"/>
|
|
330
|
-
<line num="
|
|
330
|
+
<line num="85" count="9" type="stmt"/>
|
|
331
331
|
<line num="86" count="9" type="stmt"/>
|
|
332
332
|
<line num="87" count="9" type="stmt"/>
|
|
333
333
|
<line num="88" count="9" type="stmt"/>
|
|
334
334
|
<line num="89" count="9" type="stmt"/>
|
|
335
335
|
<line num="90" count="9" type="stmt"/>
|
|
336
|
-
<line num="91" count="9" type="
|
|
337
|
-
<line num="92" count="
|
|
336
|
+
<line num="91" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
337
|
+
<line num="92" count="6" type="stmt"/>
|
|
338
338
|
<line num="93" count="6" type="stmt"/>
|
|
339
|
-
<line num="94" count="
|
|
340
|
-
<line num="95" count="
|
|
339
|
+
<line num="94" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
340
|
+
<line num="95" count="2" type="stmt"/>
|
|
341
341
|
<line num="96" count="2" type="stmt"/>
|
|
342
342
|
<line num="97" count="2" type="stmt"/>
|
|
343
343
|
<line num="98" count="2" type="stmt"/>
|
|
344
|
-
<line num="99" count="2" type="
|
|
344
|
+
<line num="99" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
345
345
|
<line num="100" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
346
|
-
<line num="101" count="2" type="
|
|
346
|
+
<line num="101" count="2" type="stmt"/>
|
|
347
347
|
<line num="102" count="2" type="stmt"/>
|
|
348
348
|
<line num="103" count="2" type="stmt"/>
|
|
349
349
|
<line num="104" count="2" type="stmt"/>
|
|
350
350
|
<line num="105" count="2" type="stmt"/>
|
|
351
|
-
<line num="106" count="
|
|
352
|
-
<line num="
|
|
353
|
-
<line num="
|
|
354
|
-
<line num="110" count="
|
|
351
|
+
<line num="106" count="9" type="stmt"/>
|
|
352
|
+
<line num="108" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
353
|
+
<line num="109" count="6" type="stmt"/>
|
|
354
|
+
<line num="110" count="6" type="stmt"/>
|
|
355
355
|
<line num="111" count="6" type="stmt"/>
|
|
356
356
|
<line num="112" count="6" type="stmt"/>
|
|
357
357
|
<line num="113" count="6" type="stmt"/>
|
|
358
358
|
<line num="114" count="6" type="stmt"/>
|
|
359
|
-
<line num="115" count="6" type="stmt"/>
|
|
360
359
|
<line num="116" count="6" type="stmt"/>
|
|
361
|
-
<line num="
|
|
362
|
-
<line num="
|
|
363
|
-
<line num="
|
|
364
|
-
<line num="
|
|
365
|
-
<line num="
|
|
366
|
-
<line num="
|
|
367
|
-
<line num="
|
|
360
|
+
<line num="117" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
361
|
+
<line num="118" count="16" type="stmt"/>
|
|
362
|
+
<line num="119" count="16" type="stmt"/>
|
|
363
|
+
<line num="120" count="16" type="stmt"/>
|
|
364
|
+
<line num="121" count="16" type="cond" truecount="0" falsecount="1"/>
|
|
365
|
+
<line num="122" count="0" type="stmt"/>
|
|
366
|
+
<line num="123" count="0" type="stmt"/>
|
|
367
|
+
<line num="124" count="0" type="stmt"/>
|
|
368
368
|
<line num="125" count="0" type="stmt"/>
|
|
369
|
-
<line num="126" count="
|
|
370
|
-
<line num="127" count="
|
|
371
|
-
<line num="128" count="
|
|
372
|
-
<line num="
|
|
373
|
-
<line num="130" count="16" type="stmt"/>
|
|
369
|
+
<line num="126" count="16" type="stmt"/>
|
|
370
|
+
<line num="127" count="16" type="stmt"/>
|
|
371
|
+
<line num="128" count="6" type="stmt"/>
|
|
372
|
+
<line num="130" count="6" type="stmt"/>
|
|
374
373
|
<line num="131" count="6" type="stmt"/>
|
|
374
|
+
<line num="132" count="6" type="stmt"/>
|
|
375
375
|
<line num="133" count="6" type="stmt"/>
|
|
376
376
|
<line num="134" count="6" type="stmt"/>
|
|
377
377
|
<line num="135" count="6" type="stmt"/>
|
|
378
|
-
<line num="136" count="6" type="
|
|
379
|
-
<line num="137" count="
|
|
380
|
-
<line num="138" count="
|
|
381
|
-
<line num="139" count="6" type="
|
|
382
|
-
<line num="140" count="
|
|
383
|
-
<line num="141" count="
|
|
384
|
-
<line num="142" count="
|
|
385
|
-
<line num="143" count="
|
|
378
|
+
<line num="136" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
379
|
+
<line num="137" count="12" type="stmt"/>
|
|
380
|
+
<line num="138" count="12" type="stmt"/>
|
|
381
|
+
<line num="139" count="6" type="stmt"/>
|
|
382
|
+
<line num="140" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
383
|
+
<line num="141" count="2" type="stmt"/>
|
|
384
|
+
<line num="142" count="2" type="stmt"/>
|
|
385
|
+
<line num="143" count="2" type="stmt"/>
|
|
386
386
|
<line num="144" count="2" type="stmt"/>
|
|
387
387
|
<line num="145" count="2" type="stmt"/>
|
|
388
388
|
<line num="146" count="2" type="stmt"/>
|
|
389
389
|
<line num="147" count="2" type="stmt"/>
|
|
390
390
|
<line num="148" count="2" type="stmt"/>
|
|
391
391
|
<line num="149" count="2" type="stmt"/>
|
|
392
|
-
<line num="
|
|
393
|
-
<line num="
|
|
394
|
-
<line num="
|
|
395
|
-
<line num="
|
|
392
|
+
<line num="151" count="6" type="stmt"/>
|
|
393
|
+
<line num="152" count="6" type="stmt"/>
|
|
394
|
+
<line num="153" count="6" type="stmt"/>
|
|
395
|
+
<line num="154" count="6" type="stmt"/>
|
|
396
396
|
<line num="155" count="6" type="stmt"/>
|
|
397
397
|
<line num="156" count="6" type="stmt"/>
|
|
398
|
-
<line num="157" count="6" type="
|
|
399
|
-
<line num="158" count="
|
|
400
|
-
<line num="159" count="
|
|
401
|
-
<line num="160" count="
|
|
402
|
-
<line num="161" count="
|
|
398
|
+
<line num="157" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
399
|
+
<line num="158" count="1" type="stmt"/>
|
|
400
|
+
<line num="159" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
401
|
+
<line num="160" count="2" type="stmt"/>
|
|
402
|
+
<line num="161" count="2" type="stmt"/>
|
|
403
403
|
<line num="162" count="1" type="stmt"/>
|
|
404
|
-
<line num="163" count="
|
|
405
|
-
<line num="164" count="
|
|
406
|
-
<line num="165" count="
|
|
404
|
+
<line num="163" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
405
|
+
<line num="164" count="1" type="stmt"/>
|
|
406
|
+
<line num="165" count="1" type="stmt"/>
|
|
407
407
|
<line num="166" count="1" type="stmt"/>
|
|
408
|
-
<line num="167" count="
|
|
408
|
+
<line num="167" count="1" type="stmt"/>
|
|
409
409
|
<line num="168" count="1" type="stmt"/>
|
|
410
410
|
<line num="169" count="1" type="stmt"/>
|
|
411
411
|
<line num="170" count="1" type="stmt"/>
|
|
412
412
|
<line num="171" count="1" type="stmt"/>
|
|
413
413
|
<line num="172" count="1" type="stmt"/>
|
|
414
|
-
<line num="173" count="
|
|
415
|
-
<line num="174" count="1" type="stmt"/>
|
|
416
|
-
<line num="175" count="1" type="stmt"/>
|
|
417
|
-
<line num="176" count="1" type="stmt"/>
|
|
418
|
-
<line num="177" count="1" type="stmt"/>
|
|
419
|
-
<line num="178" count="6" type="stmt"/>
|
|
414
|
+
<line num="173" count="6" type="stmt"/>
|
|
420
415
|
</file>
|
|
421
416
|
<file name="fileContents.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/fileContents.ts">
|
|
422
417
|
<metrics statements="86" coveredstatements="72" conditionals="13" coveredconditionals="5" methods="3" coveredmethods="3"/>
|
|
@@ -507,8 +502,43 @@
|
|
|
507
502
|
<line num="107" count="0" type="stmt"/>
|
|
508
503
|
<line num="108" count="6" type="stmt"/>
|
|
509
504
|
</file>
|
|
505
|
+
<file name="forceError.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/forceError.ts">
|
|
506
|
+
<metrics statements="32" coveredstatements="32" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
507
|
+
<line num="1" count="1" type="stmt"/>
|
|
508
|
+
<line num="3" count="1" type="stmt"/>
|
|
509
|
+
<line num="4" count="1" type="stmt"/>
|
|
510
|
+
<line num="5" count="1" type="stmt"/>
|
|
511
|
+
<line num="6" count="1" type="stmt"/>
|
|
512
|
+
<line num="7" count="1" type="stmt"/>
|
|
513
|
+
<line num="8" count="1" type="stmt"/>
|
|
514
|
+
<line num="9" count="1" type="stmt"/>
|
|
515
|
+
<line num="10" count="1" type="stmt"/>
|
|
516
|
+
<line num="11" count="1" type="stmt"/>
|
|
517
|
+
<line num="12" count="1" type="stmt"/>
|
|
518
|
+
<line num="13" count="1" type="stmt"/>
|
|
519
|
+
<line num="14" count="1" type="stmt"/>
|
|
520
|
+
<line num="15" count="1" type="stmt"/>
|
|
521
|
+
<line num="16" count="1" type="stmt"/>
|
|
522
|
+
<line num="17" count="1" type="stmt"/>
|
|
523
|
+
<line num="18" count="1" type="stmt"/>
|
|
524
|
+
<line num="19" count="1" type="stmt"/>
|
|
525
|
+
<line num="20" count="1" type="stmt"/>
|
|
526
|
+
<line num="21" count="1" type="stmt"/>
|
|
527
|
+
<line num="22" count="1" type="stmt"/>
|
|
528
|
+
<line num="23" count="1" type="stmt"/>
|
|
529
|
+
<line num="24" count="1" type="stmt"/>
|
|
530
|
+
<line num="25" count="1" type="stmt"/>
|
|
531
|
+
<line num="26" count="1" type="stmt"/>
|
|
532
|
+
<line num="27" count="1" type="stmt"/>
|
|
533
|
+
<line num="28" count="1" type="stmt"/>
|
|
534
|
+
<line num="29" count="1" type="stmt"/>
|
|
535
|
+
<line num="30" count="1" type="stmt"/>
|
|
536
|
+
<line num="31" count="1" type="stmt"/>
|
|
537
|
+
<line num="32" count="1" type="stmt"/>
|
|
538
|
+
<line num="33" count="1" type="stmt"/>
|
|
539
|
+
</file>
|
|
510
540
|
<file name="index.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/index.ts">
|
|
511
|
-
<metrics statements="
|
|
541
|
+
<metrics statements="17" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
512
542
|
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
513
543
|
<line num="8" count="0" type="stmt"/>
|
|
514
544
|
<line num="9" count="0" type="stmt"/>
|
|
@@ -523,10 +553,12 @@
|
|
|
523
553
|
<line num="18" count="0" type="stmt"/>
|
|
524
554
|
<line num="19" count="0" type="stmt"/>
|
|
525
555
|
<line num="20" count="0" type="stmt"/>
|
|
556
|
+
<line num="21" count="0" type="stmt"/>
|
|
526
557
|
<line num="22" count="0" type="stmt"/>
|
|
558
|
+
<line num="24" count="0" type="stmt"/>
|
|
527
559
|
</file>
|
|
528
560
|
<file name="mustSatisfyPeerDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/mustSatisfyPeerDependencies.ts">
|
|
529
|
-
<metrics statements="
|
|
561
|
+
<metrics statements="592" coveredstatements="558" conditionals="136" coveredconditionals="123" methods="10" coveredmethods="10"/>
|
|
530
562
|
<line num="1" count="1" type="stmt"/>
|
|
531
563
|
<line num="9" count="1" type="stmt"/>
|
|
532
564
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -749,100 +781,100 @@
|
|
|
749
781
|
<line num="307" count="3" type="stmt"/>
|
|
750
782
|
<line num="308" count="3" type="stmt"/>
|
|
751
783
|
<line num="309" count="3" type="stmt"/>
|
|
752
|
-
<line num="310" count="
|
|
753
|
-
<line num="
|
|
754
|
-
<line num="
|
|
755
|
-
<line num="
|
|
756
|
-
<line num="319" count="
|
|
784
|
+
<line num="310" count="18" type="stmt"/>
|
|
785
|
+
<line num="313" count="14" type="stmt"/>
|
|
786
|
+
<line num="315" count="14" type="stmt"/>
|
|
787
|
+
<line num="318" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
788
|
+
<line num="319" count="4" type="stmt"/>
|
|
757
789
|
<line num="320" count="4" type="stmt"/>
|
|
758
790
|
<line num="321" count="4" type="stmt"/>
|
|
759
|
-
<line num="322" count="4" type="
|
|
760
|
-
<line num="323" count="
|
|
761
|
-
<line num="324" count="
|
|
762
|
-
<line num="325" count="
|
|
791
|
+
<line num="322" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
792
|
+
<line num="323" count="10" type="stmt"/>
|
|
793
|
+
<line num="324" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
794
|
+
<line num="325" count="38" type="stmt"/>
|
|
763
795
|
<line num="326" count="38" type="stmt"/>
|
|
764
796
|
<line num="327" count="38" type="stmt"/>
|
|
765
797
|
<line num="328" count="38" type="stmt"/>
|
|
766
|
-
<line num="329" count="38" type="
|
|
767
|
-
<line num="330" count="
|
|
798
|
+
<line num="329" count="38" type="cond" truecount="0" falsecount="1"/>
|
|
799
|
+
<line num="330" count="0" type="stmt"/>
|
|
768
800
|
<line num="331" count="0" type="stmt"/>
|
|
769
801
|
<line num="332" count="0" type="stmt"/>
|
|
770
802
|
<line num="333" count="0" type="stmt"/>
|
|
771
|
-
<line num="334" count="
|
|
803
|
+
<line num="334" count="38" type="stmt"/>
|
|
772
804
|
<line num="335" count="38" type="stmt"/>
|
|
773
805
|
<line num="336" count="38" type="stmt"/>
|
|
774
806
|
<line num="337" count="38" type="stmt"/>
|
|
775
|
-
<line num="338" count="38" type="
|
|
776
|
-
<line num="339" count="
|
|
777
|
-
<line num="340" count="8" type="
|
|
778
|
-
<line num="341" count="
|
|
807
|
+
<line num="338" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
808
|
+
<line num="339" count="8" type="stmt"/>
|
|
809
|
+
<line num="340" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
810
|
+
<line num="341" count="30" type="stmt"/>
|
|
779
811
|
<line num="342" count="30" type="stmt"/>
|
|
780
812
|
<line num="343" count="30" type="stmt"/>
|
|
781
813
|
<line num="344" count="30" type="stmt"/>
|
|
782
|
-
<line num="345" count="
|
|
783
|
-
<line num="346" count="
|
|
814
|
+
<line num="345" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
815
|
+
<line num="346" count="32" type="stmt"/>
|
|
784
816
|
<line num="347" count="32" type="stmt"/>
|
|
785
817
|
<line num="348" count="32" type="stmt"/>
|
|
786
818
|
<line num="349" count="32" type="stmt"/>
|
|
787
819
|
<line num="350" count="32" type="stmt"/>
|
|
788
820
|
<line num="351" count="32" type="stmt"/>
|
|
789
|
-
<line num="352" count="32" type="
|
|
790
|
-
<line num="353" count="
|
|
791
|
-
<line num="354" count="6" type="
|
|
792
|
-
<line num="
|
|
793
|
-
<line num="357" count="
|
|
821
|
+
<line num="352" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
822
|
+
<line num="353" count="6" type="stmt"/>
|
|
823
|
+
<line num="354" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
824
|
+
<line num="356" count="32" type="cond" truecount="0" falsecount="1"/>
|
|
825
|
+
<line num="357" count="0" type="stmt"/>
|
|
794
826
|
<line num="358" count="0" type="stmt"/>
|
|
795
827
|
<line num="359" count="0" type="stmt"/>
|
|
796
828
|
<line num="360" count="0" type="stmt"/>
|
|
797
829
|
<line num="361" count="0" type="stmt"/>
|
|
798
830
|
<line num="362" count="0" type="stmt"/>
|
|
799
831
|
<line num="363" count="0" type="stmt"/>
|
|
800
|
-
<line num="364" count="0" type="
|
|
801
|
-
<line num="365" count="
|
|
802
|
-
<line num="366" count="
|
|
803
|
-
<line num="367" count="13" type="
|
|
804
|
-
<line num="368" count="
|
|
832
|
+
<line num="364" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
833
|
+
<line num="365" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
834
|
+
<line num="366" count="13" type="stmt"/>
|
|
835
|
+
<line num="367" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
836
|
+
<line num="368" count="26" type="stmt"/>
|
|
805
837
|
<line num="369" count="26" type="stmt"/>
|
|
806
838
|
<line num="370" count="26" type="stmt"/>
|
|
807
839
|
<line num="371" count="26" type="stmt"/>
|
|
808
|
-
<line num="372" count="26" type="
|
|
809
|
-
<line num="373" count="
|
|
810
|
-
<line num="
|
|
840
|
+
<line num="372" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
841
|
+
<line num="373" count="30" type="stmt"/>
|
|
842
|
+
<line num="375" count="14" type="stmt"/>
|
|
811
843
|
<line num="376" count="14" type="stmt"/>
|
|
812
844
|
<line num="377" count="14" type="stmt"/>
|
|
813
845
|
<line num="378" count="14" type="stmt"/>
|
|
814
|
-
<line num="379" count="14" type="
|
|
815
|
-
<line num="
|
|
846
|
+
<line num="379" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
847
|
+
<line num="381" count="13" type="stmt"/>
|
|
816
848
|
<line num="382" count="13" type="stmt"/>
|
|
817
849
|
<line num="383" count="13" type="stmt"/>
|
|
818
850
|
<line num="384" count="13" type="stmt"/>
|
|
819
|
-
<line num="385" count="13" type="
|
|
820
|
-
<line num="386" count="
|
|
851
|
+
<line num="385" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
852
|
+
<line num="386" count="26" type="stmt"/>
|
|
821
853
|
<line num="387" count="26" type="stmt"/>
|
|
822
|
-
<line num="388" count="26" type="
|
|
823
|
-
<line num="389" count="
|
|
854
|
+
<line num="388" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
855
|
+
<line num="389" count="13" type="stmt"/>
|
|
824
856
|
<line num="390" count="13" type="stmt"/>
|
|
825
857
|
<line num="391" count="13" type="stmt"/>
|
|
826
|
-
<line num="392" count="13" type="
|
|
827
|
-
<line num="393" count="
|
|
858
|
+
<line num="392" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
859
|
+
<line num="393" count="6" type="stmt"/>
|
|
828
860
|
<line num="394" count="6" type="stmt"/>
|
|
829
861
|
<line num="395" count="6" type="stmt"/>
|
|
830
862
|
<line num="396" count="6" type="stmt"/>
|
|
831
|
-
<line num="397" count="
|
|
832
|
-
<line num="398" count="
|
|
863
|
+
<line num="397" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
864
|
+
<line num="398" count="7" type="stmt"/>
|
|
833
865
|
<line num="399" count="7" type="stmt"/>
|
|
834
866
|
<line num="400" count="7" type="stmt"/>
|
|
835
867
|
<line num="401" count="7" type="stmt"/>
|
|
836
|
-
<line num="402" count="7" type="
|
|
837
|
-
<line num="403" count="
|
|
868
|
+
<line num="402" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
869
|
+
<line num="403" count="2" type="stmt"/>
|
|
838
870
|
<line num="404" count="2" type="stmt"/>
|
|
839
871
|
<line num="405" count="2" type="stmt"/>
|
|
840
872
|
<line num="406" count="2" type="stmt"/>
|
|
841
873
|
<line num="407" count="2" type="stmt"/>
|
|
842
874
|
<line num="408" count="2" type="stmt"/>
|
|
843
875
|
<line num="409" count="2" type="stmt"/>
|
|
844
|
-
<line num="410" count="
|
|
845
|
-
<line num="411" count="
|
|
876
|
+
<line num="410" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
877
|
+
<line num="411" count="5" type="stmt"/>
|
|
846
878
|
<line num="412" count="5" type="stmt"/>
|
|
847
879
|
<line num="413" count="5" type="stmt"/>
|
|
848
880
|
<line num="414" count="5" type="stmt"/>
|
|
@@ -850,12 +882,12 @@
|
|
|
850
882
|
<line num="416" count="5" type="stmt"/>
|
|
851
883
|
<line num="417" count="5" type="stmt"/>
|
|
852
884
|
<line num="418" count="5" type="stmt"/>
|
|
853
|
-
<line num="419" count="
|
|
854
|
-
<line num="420" count="
|
|
855
|
-
<line num="
|
|
856
|
-
<line num="425" count="13" type="
|
|
857
|
-
<line num="426" count="
|
|
858
|
-
<line num="427" count="
|
|
885
|
+
<line num="419" count="7" type="stmt"/>
|
|
886
|
+
<line num="420" count="26" type="stmt"/>
|
|
887
|
+
<line num="424" count="13" type="stmt"/>
|
|
888
|
+
<line num="425" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
889
|
+
<line num="426" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
890
|
+
<line num="427" count="0" type="stmt"/>
|
|
859
891
|
<line num="428" count="0" type="stmt"/>
|
|
860
892
|
<line num="429" count="0" type="stmt"/>
|
|
861
893
|
<line num="430" count="0" type="stmt"/>
|
|
@@ -863,20 +895,20 @@
|
|
|
863
895
|
<line num="432" count="0" type="stmt"/>
|
|
864
896
|
<line num="433" count="0" type="stmt"/>
|
|
865
897
|
<line num="434" count="0" type="stmt"/>
|
|
866
|
-
<line num="435" count="
|
|
867
|
-
<line num="436" count="4" type="
|
|
868
|
-
<line num="437" count="
|
|
898
|
+
<line num="435" count="4" type="stmt"/>
|
|
899
|
+
<line num="436" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
900
|
+
<line num="437" count="2" type="stmt"/>
|
|
869
901
|
<line num="438" count="2" type="stmt"/>
|
|
870
902
|
<line num="439" count="2" type="stmt"/>
|
|
871
903
|
<line num="440" count="2" type="stmt"/>
|
|
872
904
|
<line num="441" count="2" type="stmt"/>
|
|
873
905
|
<line num="442" count="2" type="stmt"/>
|
|
874
906
|
<line num="443" count="2" type="stmt"/>
|
|
875
|
-
<line num="444" count="
|
|
876
|
-
<line num="
|
|
877
|
-
<line num="449" count="13" type="
|
|
878
|
-
<line num="450" count="
|
|
879
|
-
<line num="451" count="
|
|
907
|
+
<line num="444" count="4" type="stmt"/>
|
|
908
|
+
<line num="448" count="13" type="stmt"/>
|
|
909
|
+
<line num="449" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
910
|
+
<line num="450" count="2" type="stmt"/>
|
|
911
|
+
<line num="451" count="2" type="stmt"/>
|
|
880
912
|
<line num="452" count="2" type="stmt"/>
|
|
881
913
|
<line num="453" count="2" type="stmt"/>
|
|
882
914
|
<line num="454" count="2" type="stmt"/>
|
|
@@ -889,23 +921,23 @@
|
|
|
889
921
|
<line num="461" count="2" type="stmt"/>
|
|
890
922
|
<line num="462" count="2" type="stmt"/>
|
|
891
923
|
<line num="463" count="2" type="stmt"/>
|
|
892
|
-
<line num="
|
|
893
|
-
<line num="
|
|
894
|
-
<line num="469" count="
|
|
895
|
-
<line num="470" count="
|
|
924
|
+
<line num="467" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
925
|
+
<line num="468" count="9" type="cond" truecount="0" falsecount="1"/>
|
|
926
|
+
<line num="469" count="0" type="stmt"/>
|
|
927
|
+
<line num="470" count="0" type="stmt"/>
|
|
896
928
|
<line num="471" count="0" type="stmt"/>
|
|
897
929
|
<line num="472" count="0" type="stmt"/>
|
|
898
930
|
<line num="473" count="0" type="stmt"/>
|
|
899
931
|
<line num="474" count="0" type="stmt"/>
|
|
900
932
|
<line num="475" count="0" type="stmt"/>
|
|
901
933
|
<line num="476" count="0" type="stmt"/>
|
|
902
|
-
<line num="477" count="
|
|
903
|
-
<line num="478" count="
|
|
934
|
+
<line num="477" count="9" type="stmt"/>
|
|
935
|
+
<line num="478" count="9" type="stmt"/>
|
|
904
936
|
<line num="479" count="9" type="stmt"/>
|
|
905
937
|
<line num="480" count="9" type="stmt"/>
|
|
906
|
-
<line num="481" count="9" type="
|
|
907
|
-
<line num="482" count="
|
|
908
|
-
<line num="483" count="
|
|
938
|
+
<line num="481" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
939
|
+
<line num="482" count="2" type="stmt"/>
|
|
940
|
+
<line num="483" count="2" type="stmt"/>
|
|
909
941
|
<line num="484" count="2" type="stmt"/>
|
|
910
942
|
<line num="485" count="2" type="stmt"/>
|
|
911
943
|
<line num="486" count="2" type="stmt"/>
|
|
@@ -918,225 +950,210 @@
|
|
|
918
950
|
<line num="493" count="2" type="stmt"/>
|
|
919
951
|
<line num="494" count="2" type="stmt"/>
|
|
920
952
|
<line num="495" count="2" type="stmt"/>
|
|
921
|
-
<line num="496" count="
|
|
922
|
-
<line num="497" count="
|
|
923
|
-
<line num="498" count="
|
|
924
|
-
<line num="
|
|
925
|
-
<line num="
|
|
926
|
-
<line num="502" count="50" type="
|
|
953
|
+
<line num="496" count="9" type="stmt"/>
|
|
954
|
+
<line num="497" count="13" type="stmt"/>
|
|
955
|
+
<line num="498" count="14" type="stmt"/>
|
|
956
|
+
<line num="500" count="50" type="cond" truecount="1" falsecount="0"/>
|
|
957
|
+
<line num="501" count="50" type="stmt"/>
|
|
958
|
+
<line num="502" count="50" type="stmt"/>
|
|
927
959
|
<line num="503" count="50" type="stmt"/>
|
|
928
960
|
<line num="504" count="50" type="stmt"/>
|
|
929
|
-
<line num="
|
|
930
|
-
<line num="506" count="50" type="stmt"/>
|
|
961
|
+
<line num="508" count="50" type="stmt"/>
|
|
931
962
|
<line num="510" count="50" type="stmt"/>
|
|
932
|
-
<line num="
|
|
933
|
-
<line num="
|
|
934
|
-
<line num="
|
|
935
|
-
<line num="
|
|
936
|
-
<line num="
|
|
937
|
-
<line num="
|
|
938
|
-
<line num="
|
|
939
|
-
<line num="
|
|
940
|
-
<line num="520" count="
|
|
941
|
-
<line num="
|
|
942
|
-
<line num="
|
|
943
|
-
<line num="
|
|
944
|
-
<line num="
|
|
963
|
+
<line num="511" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
964
|
+
<line num="512" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
965
|
+
<line num="513" count="9" type="stmt"/>
|
|
966
|
+
<line num="514" count="50" type="cond" truecount="1" falsecount="0"/>
|
|
967
|
+
<line num="515" count="10" type="stmt"/>
|
|
968
|
+
<line num="516" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
969
|
+
<line num="517" count="40" type="stmt"/>
|
|
970
|
+
<line num="518" count="40" type="stmt"/>
|
|
971
|
+
<line num="520" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
972
|
+
<line num="521" count="11" type="stmt"/>
|
|
973
|
+
<line num="522" count="11" type="stmt"/>
|
|
974
|
+
<line num="523" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
975
|
+
<line num="524" count="10" type="stmt"/>
|
|
976
|
+
<line num="525" count="10" type="stmt"/>
|
|
945
977
|
<line num="526" count="10" type="stmt"/>
|
|
946
|
-
<line num="527" count="
|
|
947
|
-
<line num="528" count="
|
|
948
|
-
<line num="529" count="
|
|
949
|
-
<line num="530" count="
|
|
978
|
+
<line num="527" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
979
|
+
<line num="528" count="1" type="stmt"/>
|
|
980
|
+
<line num="529" count="1" type="stmt"/>
|
|
981
|
+
<line num="530" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
950
982
|
<line num="531" count="1" type="stmt"/>
|
|
951
983
|
<line num="532" count="1" type="stmt"/>
|
|
952
|
-
<line num="533" count="1" type="
|
|
953
|
-
<line num="534" count="
|
|
984
|
+
<line num="533" count="1" type="stmt"/>
|
|
985
|
+
<line num="534" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
954
986
|
<line num="535" count="1" type="stmt"/>
|
|
955
987
|
<line num="536" count="1" type="stmt"/>
|
|
956
988
|
<line num="537" count="1" type="stmt"/>
|
|
957
989
|
<line num="538" count="1" type="stmt"/>
|
|
958
|
-
<line num="
|
|
959
|
-
<line num="
|
|
960
|
-
<line num="
|
|
961
|
-
<line num="
|
|
962
|
-
<line num="
|
|
963
|
-
<line num="
|
|
964
|
-
<line num="
|
|
965
|
-
<line num="
|
|
966
|
-
<line num="
|
|
967
|
-
<line num="579" count="
|
|
968
|
-
<line num="580" count="
|
|
969
|
-
<line num="
|
|
970
|
-
<line num="
|
|
971
|
-
<line num="
|
|
972
|
-
<line num="
|
|
973
|
-
<line num="
|
|
974
|
-
<line num="
|
|
975
|
-
<line num="
|
|
976
|
-
<line num="
|
|
977
|
-
<line num="
|
|
978
|
-
<line num="
|
|
979
|
-
<line num="
|
|
980
|
-
<line num="
|
|
981
|
-
<line num="
|
|
982
|
-
<line num="
|
|
983
|
-
<line num="
|
|
984
|
-
<line num="
|
|
985
|
-
<line num="
|
|
986
|
-
<line num="
|
|
987
|
-
<line num="
|
|
990
|
+
<line num="540" count="1" type="stmt"/>
|
|
991
|
+
<line num="541" count="11" type="stmt"/>
|
|
992
|
+
<line num="572" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
993
|
+
<line num="573" count="69" type="stmt"/>
|
|
994
|
+
<line num="574" count="69" type="stmt"/>
|
|
995
|
+
<line num="575" count="69" type="stmt"/>
|
|
996
|
+
<line num="576" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
997
|
+
<line num="577" count="22" type="stmt"/>
|
|
998
|
+
<line num="578" count="69" type="cond" truecount="2" falsecount="0"/>
|
|
999
|
+
<line num="579" count="16" type="stmt"/>
|
|
1000
|
+
<line num="580" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1001
|
+
<line num="584" count="69" type="cond" truecount="0" falsecount="1"/>
|
|
1002
|
+
<line num="585" count="0" type="stmt"/>
|
|
1003
|
+
<line num="586" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1004
|
+
<line num="588" count="69" type="cond" truecount="3" falsecount="0"/>
|
|
1005
|
+
<line num="589" count="69" type="cond" truecount="3" falsecount="0"/>
|
|
1006
|
+
<line num="591" count="69" type="stmt"/>
|
|
1007
|
+
<line num="592" count="69" type="stmt"/>
|
|
1008
|
+
<line num="593" count="69" type="cond" truecount="1" falsecount="1"/>
|
|
1009
|
+
<line num="596" count="0" type="stmt"/>
|
|
1010
|
+
<line num="597" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1011
|
+
<line num="599" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
1012
|
+
<line num="600" count="3" type="stmt"/>
|
|
1013
|
+
<line num="604" count="3" type="stmt"/>
|
|
1014
|
+
<line num="605" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1015
|
+
<line num="606" count="3" type="stmt"/>
|
|
1016
|
+
<line num="607" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
1017
|
+
<line num="608" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1018
|
+
<line num="609" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1019
|
+
<line num="610" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
988
1020
|
<line num="611" count="3" type="stmt"/>
|
|
989
1021
|
<line num="612" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
990
|
-
<line num="613" count="3" type="
|
|
991
|
-
<line num="614" count="
|
|
992
|
-
<line num="615" count="
|
|
993
|
-
<line num="616" count="1" type="
|
|
994
|
-
<line num="617" count="1" type="
|
|
995
|
-
<line num="618" count="
|
|
996
|
-
<line num="619" count="3" type="
|
|
997
|
-
<line num="
|
|
998
|
-
<line num="
|
|
999
|
-
<line num="
|
|
1000
|
-
<line num="
|
|
1001
|
-
<line num="
|
|
1002
|
-
<line num="
|
|
1003
|
-
<line num="
|
|
1004
|
-
<line num="
|
|
1005
|
-
<line num="
|
|
1006
|
-
<line num="632" count="3" type="
|
|
1007
|
-
<line num="633" count="
|
|
1008
|
-
<line num="634" count="
|
|
1009
|
-
<line num="635" count="
|
|
1010
|
-
<line num="636" count="1" type="
|
|
1011
|
-
<line num="
|
|
1012
|
-
<line num="
|
|
1013
|
-
<line num="
|
|
1014
|
-
<line num="
|
|
1015
|
-
<line num="
|
|
1016
|
-
<line num="
|
|
1017
|
-
<line num="
|
|
1018
|
-
<line num="
|
|
1019
|
-
<line num="
|
|
1020
|
-
<line num="
|
|
1021
|
-
<line num="
|
|
1022
|
-
<line num="
|
|
1023
|
-
<line num="
|
|
1024
|
-
<line num="
|
|
1025
|
-
<line num="
|
|
1026
|
-
<line num="
|
|
1027
|
-
<line num="
|
|
1028
|
-
<line num="
|
|
1029
|
-
<line num="657" count="
|
|
1030
|
-
<line num="658" count="
|
|
1031
|
-
<line num="659" count="
|
|
1032
|
-
<line num="660" count="
|
|
1033
|
-
<line num="661" count="
|
|
1034
|
-
<line num="662" count="
|
|
1035
|
-
<line num="663" count="
|
|
1036
|
-
<line num="664" count="
|
|
1037
|
-
<line num="665" count="
|
|
1038
|
-
<line num="666" count="
|
|
1039
|
-
<line num="667" count="
|
|
1040
|
-
<line num="668" count="
|
|
1041
|
-
<line num="669" count="
|
|
1042
|
-
<line num="
|
|
1043
|
-
<line num="
|
|
1044
|
-
<line num="
|
|
1045
|
-
<line num="
|
|
1046
|
-
<line num="
|
|
1047
|
-
<line num="
|
|
1048
|
-
<line num="
|
|
1049
|
-
<line num="
|
|
1050
|
-
<line num="
|
|
1051
|
-
<line num="
|
|
1052
|
-
<line num="
|
|
1053
|
-
<line num="
|
|
1054
|
-
<line num="
|
|
1055
|
-
<line num="
|
|
1056
|
-
<line num="
|
|
1057
|
-
<line num="
|
|
1058
|
-
<line num="
|
|
1059
|
-
<line num="
|
|
1060
|
-
<line num="
|
|
1061
|
-
<line num="
|
|
1062
|
-
<line num="
|
|
1063
|
-
<line num="
|
|
1064
|
-
<line num="
|
|
1065
|
-
<line num="
|
|
1066
|
-
<line num="
|
|
1067
|
-
<line num="
|
|
1068
|
-
<line num="
|
|
1069
|
-
<line num="
|
|
1070
|
-
<line num="
|
|
1071
|
-
<line num="
|
|
1072
|
-
<line num="
|
|
1073
|
-
<line num="
|
|
1074
|
-
<line num="
|
|
1075
|
-
<line num="
|
|
1076
|
-
<line num="
|
|
1077
|
-
<line num="
|
|
1078
|
-
<line num="
|
|
1079
|
-
<line num="
|
|
1080
|
-
<line num="
|
|
1081
|
-
<line num="
|
|
1082
|
-
<line num="
|
|
1083
|
-
<line num="758" count="241" type="cond" truecount="1" falsecount="0"/>
|
|
1084
|
-
<line num="759" count="253" type="stmt"/>
|
|
1085
|
-
<line num="760" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1086
|
-
<line num="761" count="301" type="stmt"/>
|
|
1087
|
-
<line num="762" count="253" type="stmt"/>
|
|
1022
|
+
<line num="613" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1023
|
+
<line num="614" count="2" type="stmt"/>
|
|
1024
|
+
<line num="615" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1025
|
+
<line num="616" count="1" type="stmt"/>
|
|
1026
|
+
<line num="617" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1027
|
+
<line num="618" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
1028
|
+
<line num="619" count="3" type="stmt"/>
|
|
1029
|
+
<line num="623" count="3" type="stmt"/>
|
|
1030
|
+
<line num="624" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1031
|
+
<line num="625" count="3" type="stmt"/>
|
|
1032
|
+
<line num="626" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
1033
|
+
<line num="627" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1034
|
+
<line num="628" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1035
|
+
<line num="629" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
1036
|
+
<line num="630" count="3" type="stmt"/>
|
|
1037
|
+
<line num="631" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1038
|
+
<line num="632" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1039
|
+
<line num="633" count="2" type="stmt"/>
|
|
1040
|
+
<line num="634" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1041
|
+
<line num="635" count="1" type="stmt"/>
|
|
1042
|
+
<line num="636" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1043
|
+
<line num="638" count="25" type="stmt"/>
|
|
1044
|
+
<line num="639" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
1045
|
+
<line num="640" count="35" type="stmt"/>
|
|
1046
|
+
<line num="641" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1047
|
+
<line num="642" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1048
|
+
<line num="644" count="25" type="stmt"/>
|
|
1049
|
+
<line num="645" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
1050
|
+
<line num="646" count="10" type="stmt"/>
|
|
1051
|
+
<line num="647" count="10" type="stmt"/>
|
|
1052
|
+
<line num="648" count="10" type="stmt"/>
|
|
1053
|
+
<line num="649" count="10" type="stmt"/>
|
|
1054
|
+
<line num="650" count="10" type="stmt"/>
|
|
1055
|
+
<line num="651" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1056
|
+
<line num="652" count="4" type="stmt"/>
|
|
1057
|
+
<line num="653" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1058
|
+
<line num="654" count="6" type="stmt"/>
|
|
1059
|
+
<line num="655" count="6" type="stmt"/>
|
|
1060
|
+
<line num="656" count="6" type="stmt"/>
|
|
1061
|
+
<line num="657" count="6" type="stmt"/>
|
|
1062
|
+
<line num="658" count="6" type="stmt"/>
|
|
1063
|
+
<line num="659" count="6" type="stmt"/>
|
|
1064
|
+
<line num="660" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
1065
|
+
<line num="661" count="0" type="stmt"/>
|
|
1066
|
+
<line num="662" count="0" type="stmt"/>
|
|
1067
|
+
<line num="663" count="25" type="stmt"/>
|
|
1068
|
+
<line num="664" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
1069
|
+
<line num="665" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
1070
|
+
<line num="666" count="17" type="stmt"/>
|
|
1071
|
+
<line num="667" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
1072
|
+
<line num="668" count="8" type="stmt"/>
|
|
1073
|
+
<line num="669" count="8" type="stmt"/>
|
|
1074
|
+
<line num="707" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1075
|
+
<line num="708" count="346" type="cond" truecount="1" falsecount="0"/>
|
|
1076
|
+
<line num="709" count="27" type="stmt"/>
|
|
1077
|
+
<line num="710" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1078
|
+
<line num="712" count="319" type="stmt"/>
|
|
1079
|
+
<line num="713" count="319" type="stmt"/>
|
|
1080
|
+
<line num="714" count="346" type="cond" truecount="1" falsecount="0"/>
|
|
1081
|
+
<line num="715" count="16" type="stmt"/>
|
|
1082
|
+
<line num="716" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
1083
|
+
<line num="719" count="11" type="stmt"/>
|
|
1084
|
+
<line num="720" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1085
|
+
<line num="722" count="346" type="cond" truecount="3" falsecount="0"/>
|
|
1086
|
+
<line num="723" count="346" type="cond" truecount="3" falsecount="0"/>
|
|
1087
|
+
<line num="725" count="346" type="stmt"/>
|
|
1088
|
+
<line num="726" count="346" type="stmt"/>
|
|
1089
|
+
<line num="727" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
1090
|
+
<line num="728" count="11" type="stmt"/>
|
|
1091
|
+
<line num="729" count="11" type="stmt"/>
|
|
1092
|
+
<line num="731" count="11" type="stmt"/>
|
|
1093
|
+
<line num="732" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
1094
|
+
<line num="733" count="22" type="stmt"/>
|
|
1095
|
+
<line num="734" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
1096
|
+
<line num="735" count="24" type="stmt"/>
|
|
1097
|
+
<line num="737" count="24" type="stmt"/>
|
|
1098
|
+
<line num="738" count="22" type="stmt"/>
|
|
1099
|
+
<line num="739" count="281" type="cond" truecount="2" falsecount="0"/>
|
|
1100
|
+
<line num="742" count="18" type="stmt"/>
|
|
1101
|
+
<line num="743" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1102
|
+
<line num="745" count="241" type="cond" truecount="1" falsecount="0"/>
|
|
1103
|
+
<line num="746" count="253" type="stmt"/>
|
|
1104
|
+
<line num="747" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1105
|
+
<line num="748" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1106
|
+
<line num="750" count="81" type="stmt"/>
|
|
1107
|
+
<line num="751" count="81" type="cond" truecount="1" falsecount="0"/>
|
|
1108
|
+
<line num="753" count="172" type="stmt"/>
|
|
1109
|
+
<line num="754" count="172" type="stmt"/>
|
|
1110
|
+
<line num="755" count="172" type="stmt"/>
|
|
1111
|
+
<line num="756" count="172" type="stmt"/>
|
|
1112
|
+
<line num="757" count="172" type="stmt"/>
|
|
1113
|
+
<line num="759" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1114
|
+
<line num="762" count="146" type="stmt"/>
|
|
1088
1115
|
<line num="763" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1089
|
-
<line num="765" count="
|
|
1090
|
-
<line num="
|
|
1091
|
-
<line num="
|
|
1092
|
-
<line num="
|
|
1093
|
-
<line num="
|
|
1094
|
-
<line num="
|
|
1095
|
-
<line num="
|
|
1096
|
-
<line num="
|
|
1097
|
-
<line num="
|
|
1098
|
-
<line num="
|
|
1099
|
-
<line num="
|
|
1100
|
-
<line num="
|
|
1101
|
-
<line num="
|
|
1102
|
-
<line num="
|
|
1103
|
-
<line num="
|
|
1104
|
-
<line num="
|
|
1105
|
-
<line num="
|
|
1106
|
-
<line num="
|
|
1107
|
-
<line num="
|
|
1108
|
-
<line num="
|
|
1109
|
-
<line num="
|
|
1110
|
-
<line num="
|
|
1111
|
-
<line num="
|
|
1112
|
-
<line num="
|
|
1113
|
-
<line num="807" count="
|
|
1114
|
-
<line num="808" count="
|
|
1115
|
-
<line num="809" count="
|
|
1116
|
-
<line num="
|
|
1117
|
-
<line num="
|
|
1118
|
-
<line num="
|
|
1116
|
+
<line num="765" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1117
|
+
<line num="768" count="20" type="stmt"/>
|
|
1118
|
+
<line num="769" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1119
|
+
<line num="772" count="6" type="stmt"/>
|
|
1120
|
+
<line num="773" count="6" type="stmt"/>
|
|
1121
|
+
<line num="774" count="26" type="stmt"/>
|
|
1122
|
+
<line num="775" count="241" type="stmt"/>
|
|
1123
|
+
<line num="776" count="241" type="stmt"/>
|
|
1124
|
+
<line num="781" count="700" type="cond" truecount="1" falsecount="0"/>
|
|
1125
|
+
<line num="782" count="700" type="stmt"/>
|
|
1126
|
+
<line num="783" count="700" type="stmt"/>
|
|
1127
|
+
<line num="788" count="646" type="cond" truecount="1" falsecount="0"/>
|
|
1128
|
+
<line num="789" count="646" type="stmt"/>
|
|
1129
|
+
<line num="790" count="646" type="stmt"/>
|
|
1130
|
+
<line num="792" count="344" type="cond" truecount="1" falsecount="0"/>
|
|
1131
|
+
<line num="793" count="344" type="stmt"/>
|
|
1132
|
+
<line num="794" count="344" type="stmt"/>
|
|
1133
|
+
<line num="797" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1134
|
+
<line num="798" count="487" type="stmt"/>
|
|
1135
|
+
<line num="799" count="487" type="stmt"/>
|
|
1136
|
+
<line num="803" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1137
|
+
<line num="804" count="4" type="stmt"/>
|
|
1138
|
+
<line num="805" count="4" type="stmt"/>
|
|
1139
|
+
<line num="806" count="4" type="stmt"/>
|
|
1140
|
+
<line num="807" count="4" type="stmt"/>
|
|
1141
|
+
<line num="808" count="4" type="stmt"/>
|
|
1142
|
+
<line num="809" count="4" type="stmt"/>
|
|
1143
|
+
<line num="815" count="4" type="stmt"/>
|
|
1144
|
+
<line num="816" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1145
|
+
<line num="817" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1119
1146
|
<line num="818" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1120
|
-
<line num="819" count="
|
|
1121
|
-
<line num="820" count="
|
|
1147
|
+
<line num="819" count="1" type="stmt"/>
|
|
1148
|
+
<line num="820" count="1" type="stmt"/>
|
|
1122
1149
|
<line num="821" count="4" type="stmt"/>
|
|
1123
1150
|
<line num="822" count="4" type="stmt"/>
|
|
1124
1151
|
<line num="823" count="4" type="stmt"/>
|
|
1125
1152
|
<line num="824" count="4" type="stmt"/>
|
|
1126
|
-
<line num="
|
|
1127
|
-
<line num="831" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1128
|
-
<line num="832" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1129
|
-
<line num="833" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1130
|
-
<line num="834" count="1" type="stmt"/>
|
|
1131
|
-
<line num="835" count="1" type="stmt"/>
|
|
1132
|
-
<line num="836" count="4" type="stmt"/>
|
|
1133
|
-
<line num="837" count="4" type="stmt"/>
|
|
1134
|
-
<line num="838" count="4" type="stmt"/>
|
|
1135
|
-
<line num="839" count="4" type="stmt"/>
|
|
1136
|
-
<line num="840" count="4" type="stmt"/>
|
|
1153
|
+
<line num="825" count="4" type="stmt"/>
|
|
1137
1154
|
</file>
|
|
1138
1155
|
<file name="nestedWorkspaces.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/nestedWorkspaces.ts">
|
|
1139
|
-
<metrics statements="
|
|
1156
|
+
<metrics statements="46" coveredstatements="45" conditionals="12" coveredconditionals="11" methods="1" coveredmethods="1"/>
|
|
1140
1157
|
<line num="1" count="1" type="stmt"/>
|
|
1141
1158
|
<line num="8" count="1" type="stmt"/>
|
|
1142
1159
|
<line num="9" count="1" type="stmt"/>
|
|
@@ -1165,28 +1182,58 @@
|
|
|
1165
1182
|
<line num="41" count="1" type="stmt"/>
|
|
1166
1183
|
<line num="42" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1167
1184
|
<line num="45" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
1168
|
-
<line num="
|
|
1169
|
-
<line num="
|
|
1185
|
+
<line num="48" count="6" type="stmt"/>
|
|
1186
|
+
<line num="49" count="6" type="stmt"/>
|
|
1170
1187
|
<line num="50" count="6" type="stmt"/>
|
|
1171
1188
|
<line num="51" count="6" type="stmt"/>
|
|
1172
|
-
<line num="
|
|
1173
|
-
<line num="
|
|
1174
|
-
<line num="56" count="6" type="
|
|
1175
|
-
<line num="
|
|
1176
|
-
<line num="
|
|
1177
|
-
<line num="60" count="
|
|
1178
|
-
<line num="61" count="1" type="
|
|
1189
|
+
<line num="54" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1190
|
+
<line num="55" count="8" type="stmt"/>
|
|
1191
|
+
<line num="56" count="6" type="stmt"/>
|
|
1192
|
+
<line num="58" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1193
|
+
<line num="59" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1194
|
+
<line num="60" count="1" type="stmt"/>
|
|
1195
|
+
<line num="61" count="1" type="stmt"/>
|
|
1179
1196
|
<line num="62" count="1" type="stmt"/>
|
|
1180
1197
|
<line num="63" count="1" type="stmt"/>
|
|
1181
|
-
<line num="64" count="1" type="stmt"/>
|
|
1182
1198
|
<line num="65" count="1" type="stmt"/>
|
|
1183
1199
|
<line num="66" count="1" type="stmt"/>
|
|
1184
|
-
<line num="67" count="
|
|
1200
|
+
<line num="67" count="6" type="stmt"/>
|
|
1201
|
+
<line num="68" count="1" type="stmt"/>
|
|
1185
1202
|
<line num="69" count="1" type="stmt"/>
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
<
|
|
1189
|
-
<line num="
|
|
1203
|
+
</file>
|
|
1204
|
+
<file name="oncePerPackage.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/oncePerPackage.ts">
|
|
1205
|
+
<metrics statements="31" coveredstatements="31" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1206
|
+
<line num="1" count="1" type="stmt"/>
|
|
1207
|
+
<line num="3" count="1" type="stmt"/>
|
|
1208
|
+
<line num="4" count="1" type="stmt"/>
|
|
1209
|
+
<line num="5" count="1" type="stmt"/>
|
|
1210
|
+
<line num="6" count="1" type="stmt"/>
|
|
1211
|
+
<line num="7" count="1" type="stmt"/>
|
|
1212
|
+
<line num="8" count="1" type="stmt"/>
|
|
1213
|
+
<line num="9" count="1" type="stmt"/>
|
|
1214
|
+
<line num="10" count="1" type="stmt"/>
|
|
1215
|
+
<line num="11" count="1" type="stmt"/>
|
|
1216
|
+
<line num="12" count="1" type="stmt"/>
|
|
1217
|
+
<line num="13" count="1" type="stmt"/>
|
|
1218
|
+
<line num="14" count="1" type="stmt"/>
|
|
1219
|
+
<line num="15" count="1" type="stmt"/>
|
|
1220
|
+
<line num="16" count="1" type="stmt"/>
|
|
1221
|
+
<line num="17" count="1" type="stmt"/>
|
|
1222
|
+
<line num="18" count="1" type="stmt"/>
|
|
1223
|
+
<line num="19" count="1" type="stmt"/>
|
|
1224
|
+
<line num="20" count="1" type="stmt"/>
|
|
1225
|
+
<line num="21" count="1" type="stmt"/>
|
|
1226
|
+
<line num="22" count="1" type="stmt"/>
|
|
1227
|
+
<line num="23" count="1" type="stmt"/>
|
|
1228
|
+
<line num="24" count="1" type="stmt"/>
|
|
1229
|
+
<line num="25" count="1" type="stmt"/>
|
|
1230
|
+
<line num="26" count="1" type="stmt"/>
|
|
1231
|
+
<line num="27" count="1" type="stmt"/>
|
|
1232
|
+
<line num="28" count="1" type="stmt"/>
|
|
1233
|
+
<line num="29" count="1" type="stmt"/>
|
|
1234
|
+
<line num="30" count="1" type="stmt"/>
|
|
1235
|
+
<line num="31" count="1" type="stmt"/>
|
|
1236
|
+
<line num="32" count="1" type="stmt"/>
|
|
1190
1237
|
</file>
|
|
1191
1238
|
<file name="packageEntry.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/packageEntry.ts">
|
|
1192
1239
|
<metrics statements="82" coveredstatements="82" conditionals="12" coveredconditionals="12" methods="4" coveredmethods="4"/>
|
|
@@ -1480,7 +1527,7 @@
|
|
|
1480
1527
|
<line num="117" count="1" type="stmt"/>
|
|
1481
1528
|
</file>
|
|
1482
1529
|
<file name="requireDependency.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/requireDependency.ts">
|
|
1483
|
-
<metrics statements="
|
|
1530
|
+
<metrics statements="72" coveredstatements="65" conditionals="13" coveredconditionals="13" methods="3" coveredmethods="2"/>
|
|
1484
1531
|
<line num="1" count="1" type="stmt"/>
|
|
1485
1532
|
<line num="9" count="1" type="stmt"/>
|
|
1486
1533
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -1519,46 +1566,47 @@
|
|
|
1519
1566
|
<line num="49" count="0" type="stmt"/>
|
|
1520
1567
|
<line num="50" count="0" type="stmt"/>
|
|
1521
1568
|
<line num="51" count="0" type="stmt"/>
|
|
1522
|
-
<line num="52" count="
|
|
1523
|
-
<line num="53" count="
|
|
1524
|
-
<line num="54" count="3" type="
|
|
1525
|
-
<line num="
|
|
1526
|
-
<line num="
|
|
1527
|
-
<line num="58" count="
|
|
1528
|
-
<line num="59" count="
|
|
1569
|
+
<line num="52" count="3" type="stmt"/>
|
|
1570
|
+
<line num="53" count="3" type="stmt"/>
|
|
1571
|
+
<line num="54" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1572
|
+
<line num="56" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
1573
|
+
<line num="57" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1574
|
+
<line num="58" count="11" type="stmt"/>
|
|
1575
|
+
<line num="59" count="11" type="stmt"/>
|
|
1529
1576
|
<line num="60" count="11" type="stmt"/>
|
|
1530
1577
|
<line num="61" count="11" type="stmt"/>
|
|
1531
1578
|
<line num="62" count="11" type="stmt"/>
|
|
1532
|
-
<line num="63" count="11" type="
|
|
1579
|
+
<line num="63" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1533
1580
|
<line num="64" count="11" type="stmt"/>
|
|
1534
1581
|
<line num="65" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1535
|
-
<line num="66" count="
|
|
1536
|
-
<line num="67" count="
|
|
1582
|
+
<line num="66" count="5" type="stmt"/>
|
|
1583
|
+
<line num="67" count="5" type="stmt"/>
|
|
1537
1584
|
<line num="68" count="5" type="stmt"/>
|
|
1538
|
-
<line num="69" count="5" type="
|
|
1539
|
-
<line num="70" count="5" type="
|
|
1540
|
-
<line num="71" count="
|
|
1541
|
-
<line num="72" count="
|
|
1542
|
-
<line num="73" count="
|
|
1543
|
-
<line num="74" count="
|
|
1544
|
-
<line num="75" count="
|
|
1545
|
-
<line num="76" count="
|
|
1546
|
-
<line num="77" count="
|
|
1585
|
+
<line num="69" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1586
|
+
<line num="70" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1587
|
+
<line num="71" count="1" type="stmt"/>
|
|
1588
|
+
<line num="72" count="1" type="stmt"/>
|
|
1589
|
+
<line num="73" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1590
|
+
<line num="74" count="4" type="stmt"/>
|
|
1591
|
+
<line num="75" count="4" type="stmt"/>
|
|
1592
|
+
<line num="76" count="5" type="stmt"/>
|
|
1593
|
+
<line num="77" count="5" type="stmt"/>
|
|
1547
1594
|
<line num="78" count="5" type="stmt"/>
|
|
1548
1595
|
<line num="79" count="5" type="stmt"/>
|
|
1549
|
-
<line num="80" count="
|
|
1550
|
-
<line num="81" count="
|
|
1551
|
-
<line num="82" count="
|
|
1552
|
-
<line num="83" count="
|
|
1553
|
-
<line num="84" count="
|
|
1554
|
-
<line num="85" count="
|
|
1555
|
-
<line num="86" count="
|
|
1556
|
-
<line num="87" count="1" type="stmt"/>
|
|
1557
|
-
<line num="88" count="1" type="stmt"/>
|
|
1596
|
+
<line num="80" count="11" type="stmt"/>
|
|
1597
|
+
<line num="81" count="11" type="stmt"/>
|
|
1598
|
+
<line num="82" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1599
|
+
<line num="83" count="7" type="stmt"/>
|
|
1600
|
+
<line num="84" count="7" type="stmt"/>
|
|
1601
|
+
<line num="85" count="1" type="stmt"/>
|
|
1602
|
+
<line num="86" count="1" type="stmt"/>
|
|
1558
1603
|
</file>
|
|
1559
1604
|
<file name="standardTsconfig.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/standardTsconfig.ts">
|
|
1560
|
-
<metrics statements="
|
|
1605
|
+
<metrics statements="155" coveredstatements="155" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1561
1606
|
<line num="1" count="1" type="stmt"/>
|
|
1607
|
+
<line num="3" count="1" type="stmt"/>
|
|
1608
|
+
<line num="4" count="1" type="stmt"/>
|
|
1609
|
+
<line num="5" count="1" type="stmt"/>
|
|
1562
1610
|
<line num="6" count="1" type="stmt"/>
|
|
1563
1611
|
<line num="7" count="1" type="stmt"/>
|
|
1564
1612
|
<line num="8" count="1" type="stmt"/>
|
|
@@ -1713,7 +1761,7 @@
|
|
|
1713
1761
|
</file>
|
|
1714
1762
|
</package>
|
|
1715
1763
|
<package name="src.util">
|
|
1716
|
-
<metrics statements="
|
|
1764
|
+
<metrics statements="155" coveredstatements="143" conditionals="30" coveredconditionals="24" methods="11" coveredmethods="11"/>
|
|
1717
1765
|
<file name="checkAlpha.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/checkAlpha.ts">
|
|
1718
1766
|
<metrics statements="45" coveredstatements="43" conditionals="10" coveredconditionals="9" methods="4" coveredmethods="4"/>
|
|
1719
1767
|
<line num="1" count="1" type="stmt"/>
|
|
@@ -1802,25 +1850,26 @@
|
|
|
1802
1850
|
<line num="24" count="78" type="stmt"/>
|
|
1803
1851
|
</file>
|
|
1804
1852
|
<file name="packageDependencyGraphService.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/packageDependencyGraphService.ts">
|
|
1805
|
-
<metrics statements="
|
|
1853
|
+
<metrics statements="77" coveredstatements="67" conditionals="13" coveredconditionals="8" methods="4" coveredmethods="4"/>
|
|
1806
1854
|
<line num="1" count="1" type="stmt"/>
|
|
1807
1855
|
<line num="6" count="1" type="stmt"/>
|
|
1808
1856
|
<line num="7" count="1" type="stmt"/>
|
|
1809
1857
|
<line num="41" count="1" type="stmt"/>
|
|
1810
|
-
<line num="43" count="1" type="
|
|
1811
|
-
<line num="
|
|
1858
|
+
<line num="43" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1859
|
+
<line num="44" count="1" type="stmt"/>
|
|
1860
|
+
<line num="45" count="1" type="stmt"/>
|
|
1812
1861
|
<line num="46" count="1" type="stmt"/>
|
|
1813
1862
|
<line num="47" count="1" type="stmt"/>
|
|
1814
1863
|
<line num="48" count="1" type="stmt"/>
|
|
1815
|
-
<line num="49" count="1" type="
|
|
1816
|
-
<line num="50" count="
|
|
1817
|
-
<line num="51" count="
|
|
1864
|
+
<line num="49" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1865
|
+
<line num="50" count="5" type="stmt"/>
|
|
1866
|
+
<line num="51" count="5" type="stmt"/>
|
|
1818
1867
|
<line num="52" count="5" type="stmt"/>
|
|
1819
|
-
<line num="53" count="5" type="
|
|
1820
|
-
<line num="54" count="
|
|
1821
|
-
<line num="55" count="
|
|
1822
|
-
<line num="
|
|
1823
|
-
<line num="
|
|
1868
|
+
<line num="53" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
1869
|
+
<line num="54" count="0" type="stmt"/>
|
|
1870
|
+
<line num="55" count="0" type="stmt"/>
|
|
1871
|
+
<line num="57" count="5" type="stmt"/>
|
|
1872
|
+
<line num="58" count="5" type="stmt"/>
|
|
1824
1873
|
<line num="59" count="5" type="stmt"/>
|
|
1825
1874
|
<line num="60" count="5" type="stmt"/>
|
|
1826
1875
|
<line num="61" count="5" type="stmt"/>
|
|
@@ -1828,59 +1877,57 @@
|
|
|
1828
1877
|
<line num="63" count="5" type="stmt"/>
|
|
1829
1878
|
<line num="64" count="5" type="stmt"/>
|
|
1830
1879
|
<line num="65" count="5" type="stmt"/>
|
|
1831
|
-
<line num="
|
|
1832
|
-
<line num="67" count="5" type="stmt"/>
|
|
1880
|
+
<line num="68" count="5" type="stmt"/>
|
|
1833
1881
|
<line num="70" count="5" type="stmt"/>
|
|
1834
|
-
<line num="
|
|
1835
|
-
<line num="
|
|
1836
|
-
<line num="
|
|
1837
|
-
<line num="
|
|
1838
|
-
<line num="
|
|
1839
|
-
<line num="
|
|
1882
|
+
<line num="71" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
1883
|
+
<line num="72" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1884
|
+
<line num="73" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1885
|
+
<line num="74" count="2" type="stmt"/>
|
|
1886
|
+
<line num="75" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1887
|
+
<line num="76" count="4" type="stmt"/>
|
|
1888
|
+
<line num="77" count="4" type="stmt"/>
|
|
1840
1889
|
<line num="78" count="4" type="stmt"/>
|
|
1841
1890
|
<line num="79" count="4" type="stmt"/>
|
|
1842
|
-
<line num="80" count="4" type="
|
|
1843
|
-
<line num="81" count="
|
|
1844
|
-
<line num="82" count="
|
|
1891
|
+
<line num="80" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1892
|
+
<line num="81" count="0" type="stmt"/>
|
|
1893
|
+
<line num="82" count="0" type="stmt"/>
|
|
1845
1894
|
<line num="83" count="0" type="stmt"/>
|
|
1846
1895
|
<line num="84" count="0" type="stmt"/>
|
|
1847
|
-
<line num="
|
|
1848
|
-
<line num="
|
|
1896
|
+
<line num="86" count="4" type="stmt"/>
|
|
1897
|
+
<line num="87" count="4" type="stmt"/>
|
|
1849
1898
|
<line num="88" count="4" type="stmt"/>
|
|
1850
1899
|
<line num="89" count="4" type="stmt"/>
|
|
1851
1900
|
<line num="90" count="4" type="stmt"/>
|
|
1852
|
-
<line num="91" count="
|
|
1853
|
-
<line num="92" count="4" type="stmt"/>
|
|
1901
|
+
<line num="91" count="5" type="stmt"/>
|
|
1854
1902
|
<line num="93" count="5" type="stmt"/>
|
|
1855
|
-
<line num="
|
|
1856
|
-
<line num="96" count="
|
|
1857
|
-
<line num="
|
|
1858
|
-
<line num="
|
|
1859
|
-
<line num="
|
|
1860
|
-
<line num="
|
|
1861
|
-
<line num="
|
|
1862
|
-
<line num="
|
|
1863
|
-
<line num="108" count="1" type="
|
|
1864
|
-
<line num="
|
|
1865
|
-
<line num="
|
|
1866
|
-
<line num="
|
|
1867
|
-
<line num="117" count="5" type="
|
|
1868
|
-
<line num="
|
|
1869
|
-
<line num="
|
|
1870
|
-
<line num="
|
|
1871
|
-
<line num="
|
|
1872
|
-
<line num="
|
|
1873
|
-
<line num="
|
|
1903
|
+
<line num="94" count="5" type="stmt"/>
|
|
1904
|
+
<line num="96" count="1" type="stmt"/>
|
|
1905
|
+
<line num="97" count="1" type="stmt"/>
|
|
1906
|
+
<line num="100" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1907
|
+
<line num="101" count="1" type="stmt"/>
|
|
1908
|
+
<line num="102" count="1" type="stmt"/>
|
|
1909
|
+
<line num="105" count="1" type="stmt"/>
|
|
1910
|
+
<line num="106" count="1" type="stmt"/>
|
|
1911
|
+
<line num="108" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1912
|
+
<line num="109" count="5" type="stmt"/>
|
|
1913
|
+
<line num="110" count="5" type="stmt"/>
|
|
1914
|
+
<line num="115" count="5" type="stmt"/>
|
|
1915
|
+
<line num="117" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
1916
|
+
<line num="118" count="0" type="stmt"/>
|
|
1917
|
+
<line num="119" count="0" type="stmt"/>
|
|
1918
|
+
<line num="122" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
1919
|
+
<line num="123" count="0" type="stmt"/>
|
|
1920
|
+
<line num="124" count="0" type="stmt"/>
|
|
1921
|
+
<line num="127" count="5" type="stmt"/>
|
|
1922
|
+
<line num="128" count="5" type="stmt"/>
|
|
1874
1923
|
<line num="129" count="5" type="stmt"/>
|
|
1875
|
-
<line num="
|
|
1876
|
-
<line num="
|
|
1877
|
-
<line num="134" count="
|
|
1878
|
-
<line num="135" count="
|
|
1879
|
-
<line num="
|
|
1880
|
-
<line num="
|
|
1924
|
+
<line num="132" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1925
|
+
<line num="133" count="4" type="stmt"/>
|
|
1926
|
+
<line num="134" count="4" type="stmt"/>
|
|
1927
|
+
<line num="135" count="5" type="stmt"/>
|
|
1928
|
+
<line num="137" count="1" type="stmt"/>
|
|
1929
|
+
<line num="138" count="1" type="stmt"/>
|
|
1881
1930
|
<line num="139" count="1" type="stmt"/>
|
|
1882
|
-
<line num="140" count="1" type="stmt"/>
|
|
1883
|
-
<line num="141" count="1" type="stmt"/>
|
|
1884
1931
|
</file>
|
|
1885
1932
|
</package>
|
|
1886
1933
|
</project>
|