@monorepolint/rules 0.6.0-alpha.4 → 0.6.0-alpha.6
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 +443 -92
- package/.turbo/turbo-transpile-typescript.log +5 -5
- package/CHANGELOG.md +112 -0
- package/build/js/index.js +413 -368
- package/build/js/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/REMOVE.d.ts +2 -0
- package/build/types/REMOVE.d.ts.map +1 -0
- package/build/types/__tests__/alphabeticalDependencies.spec.d.ts +8 -0
- package/build/types/__tests__/alphabeticalDependencies.spec.d.ts.map +1 -0
- package/build/types/__tests__/forceError.spec.d.ts +8 -0
- package/build/types/__tests__/forceError.spec.d.ts.map +1 -0
- package/build/types/__tests__/oncePerPackage.spec.d.ts +8 -0
- package/build/types/__tests__/oncePerPackage.spec.d.ts.map +1 -0
- package/build/types/__tests__/standardTsconfig.spec.d.ts +8 -0
- package/build/types/__tests__/standardTsconfig.spec.d.ts.map +1 -0
- package/build/types/bannedDependencies.d.ts +9 -33
- package/build/types/bannedDependencies.d.ts.map +1 -1
- package/build/types/consistentDependencies.d.ts +6 -6
- package/build/types/consistentDependencies.d.ts.map +1 -1
- package/build/types/consistentVersions.d.ts +6 -10
- package/build/types/consistentVersions.d.ts.map +1 -1
- package/build/types/fileContents.d.ts +3 -2
- package/build/types/fileContents.d.ts.map +1 -1
- package/build/types/index.d.ts +1 -0
- package/build/types/index.d.ts.map +1 -1
- package/build/types/mustSatisfyPeerDependencies.d.ts +12 -190
- package/build/types/mustSatisfyPeerDependencies.d.ts.map +1 -1
- package/build/types/nestedWorkspaces.d.ts +2 -2
- package/build/types/nestedWorkspaces.d.ts.map +1 -1
- package/build/types/oncePerPackage.d.ts +6 -6
- package/build/types/oncePerPackage.d.ts.map +1 -1
- package/build/types/packageEntry.d.ts +11 -33
- package/build/types/packageEntry.d.ts.map +1 -1
- package/build/types/packageOrder.d.ts +2 -1
- package/build/types/packageOrder.d.ts.map +1 -1
- package/build/types/packageScript.d.ts +13 -22
- package/build/types/packageScript.d.ts.map +1 -1
- package/build/types/requireDependency.d.ts +5 -20
- package/build/types/requireDependency.d.ts.map +1 -1
- package/build/types/standardTsconfig.d.ts +12 -19
- package/build/types/standardTsconfig.d.ts.map +1 -1
- package/build/types/util/zodSchemas.d.ts +14 -0
- package/build/types/util/zodSchemas.d.ts.map +1 -0
- package/coverage/block-navigation.js +1 -1
- package/coverage/clover.xml +1420 -1452
- package/coverage/coverage-final.json +21 -19
- package/coverage/index.html +27 -27
- package/coverage/sorter.js +21 -7
- package/coverage/src/REMOVE.ts.html +88 -0
- package/coverage/src/alphabeticalDependencies.ts.html +15 -15
- package/coverage/src/alphabeticalScripts.ts.html +5 -5
- package/coverage/src/bannedDependencies.ts.html +20 -53
- package/coverage/src/consistentDependencies.ts.html +20 -14
- package/coverage/src/consistentVersions.ts.html +330 -183
- package/coverage/src/fileContents.ts.html +223 -88
- package/coverage/src/forceError.ts.html +31 -31
- package/coverage/src/index.html +104 -89
- package/coverage/src/index.ts.html +11 -5
- package/coverage/src/mustSatisfyPeerDependencies.ts.html +15 -501
- package/coverage/src/nestedWorkspaces.ts.html +5 -5
- package/coverage/src/oncePerPackage.ts.html +31 -31
- package/coverage/src/packageEntry.ts.html +121 -91
- package/coverage/src/packageOrder.ts.html +44 -14
- package/coverage/src/packageScript.ts.html +235 -88
- package/coverage/src/requireDependency.ts.html +241 -82
- package/coverage/src/standardTsconfig.ts.html +212 -212
- package/coverage/src/util/checkAlpha.ts.html +40 -40
- package/coverage/src/util/createRuleFactory.ts.html +19 -19
- package/coverage/src/util/index.html +30 -15
- package/coverage/src/util/makeDirectory.ts.html +11 -11
- package/coverage/src/util/packageDependencyGraphService.ts.html +1 -1
- package/coverage/src/util/zodSchemas.ts.html +130 -0
- package/package.json +15 -15
- package/src/REMOVE.ts +1 -0
- package/src/__tests__/alphabeticalDependencies.spec.ts +102 -0
- package/src/__tests__/alphabeticalScripts.spec.ts +18 -0
- package/src/__tests__/bannedDependencies.spec.ts +49 -0
- package/src/__tests__/consistentDependencies.spec.ts +23 -0
- package/src/__tests__/consistentVersions.spec.ts +142 -0
- package/src/__tests__/fileContents.spec.ts +348 -0
- package/src/__tests__/forceError.spec.ts +70 -0
- package/src/__tests__/mustSatisfyPeerDependencies.spec.ts +44 -0
- package/src/__tests__/nestedWorkspaces.spec.ts +14 -0
- package/src/__tests__/oncePerPackage.spec.ts +75 -0
- package/src/__tests__/packageEntry.spec.ts +177 -0
- package/src/__tests__/packageOrder.spec.ts +22 -0
- package/src/__tests__/packageScript.spec.ts +549 -0
- package/src/__tests__/requireDependency.spec.ts +259 -2
- package/src/__tests__/standardTsconfig.spec.ts +91 -0
- package/src/bannedDependencies.ts +14 -25
- package/src/consistentDependencies.ts +10 -8
- package/src/consistentVersions.ts +132 -83
- package/src/fileContents.ts +80 -35
- package/src/index.ts +2 -0
- package/src/mustSatisfyPeerDependencies.ts +10 -172
- package/src/nestedWorkspaces.ts +4 -4
- package/src/oncePerPackage.ts +6 -6
- package/src/packageEntry.ts +60 -50
- package/src/packageOrder.ts +19 -9
- package/src/packageScript.ts +67 -18
- package/src/requireDependency.ts +84 -31
- package/src/standardTsconfig.ts +26 -26
- package/src/util/zodSchemas.ts +15 -0
package/coverage/clover.xml
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1762538458568" clover="3.2.0">
|
|
3
|
+
<project timestamp="1762538458568" name="All files">
|
|
4
|
+
<metrics statements="1824" coveredstatements="1696" conditionals="438" coveredconditionals="397" methods="77" coveredmethods="75" elements="2339" coveredelements="2168" complexity="0" loc="1824" ncloc="1824" packages="2" files="22" classes="22"/>
|
|
5
5
|
<package name="src">
|
|
6
|
-
<metrics statements="
|
|
6
|
+
<metrics statements="1665" coveredstatements="1547" conditionals="407" coveredconditionals="371" methods="66" coveredmethods="64"/>
|
|
7
|
+
<file name="REMOVE.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/REMOVE.ts">
|
|
8
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
9
|
+
<line num="1" count="1" type="stmt"/>
|
|
10
|
+
</file>
|
|
7
11
|
<file name="alphabeticalDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/alphabeticalDependencies.ts">
|
|
8
|
-
<metrics statements="
|
|
12
|
+
<metrics statements="12" coveredstatements="12" conditionals="2" coveredconditionals="2" methods="2" coveredmethods="2"/>
|
|
9
13
|
<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"/>
|
|
13
|
-
<line num="6" count="1" type="stmt"/>
|
|
14
|
-
<line num="7" count="1" type="stmt"/>
|
|
15
14
|
<line num="8" count="1" type="stmt"/>
|
|
16
15
|
<line num="9" count="1" type="stmt"/>
|
|
17
|
-
<line num="10" count="1" type="stmt"/>
|
|
18
16
|
<line num="11" count="1" type="stmt"/>
|
|
19
17
|
<line num="12" count="1" type="stmt"/>
|
|
20
|
-
<line num="13" count="1" type="
|
|
21
|
-
<line num="14" count="
|
|
22
|
-
<line num="15" count="
|
|
23
|
-
<line num="16" count="
|
|
24
|
-
<line num="17" count="
|
|
25
|
-
<line num="18" count="1" type="
|
|
18
|
+
<line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
19
|
+
<line num="14" count="4" type="stmt"/>
|
|
20
|
+
<line num="15" count="4" type="stmt"/>
|
|
21
|
+
<line num="16" count="4" type="stmt"/>
|
|
22
|
+
<line num="17" count="4" type="stmt"/>
|
|
23
|
+
<line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
26
24
|
<line num="19" count="1" type="stmt"/>
|
|
27
25
|
</file>
|
|
28
26
|
<file name="alphabeticalScripts.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/alphabeticalScripts.ts">
|
|
29
|
-
<metrics statements="10" coveredstatements="10" conditionals="
|
|
27
|
+
<metrics statements="10" coveredstatements="10" conditionals="2" coveredconditionals="2" methods="2" coveredmethods="2"/>
|
|
30
28
|
<line num="1" count="1" type="stmt"/>
|
|
31
29
|
<line num="8" count="1" type="stmt"/>
|
|
32
30
|
<line num="9" count="1" type="stmt"/>
|
|
@@ -35,229 +33,219 @@
|
|
|
35
33
|
<line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
36
34
|
<line num="14" count="4" type="stmt"/>
|
|
37
35
|
<line num="15" count="4" type="stmt"/>
|
|
38
|
-
<line num="16" count="1" type="
|
|
36
|
+
<line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
39
37
|
<line num="17" count="1" type="stmt"/>
|
|
40
38
|
</file>
|
|
41
39
|
<file name="bannedDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/bannedDependencies.ts">
|
|
42
|
-
<metrics statements="
|
|
40
|
+
<metrics statements="124" coveredstatements="120" conditionals="30" coveredconditionals="23" methods="6" coveredmethods="5"/>
|
|
43
41
|
<line num="1" count="1" type="stmt"/>
|
|
44
42
|
<line num="9" count="1" type="stmt"/>
|
|
45
43
|
<line num="10" count="1" type="stmt"/>
|
|
46
44
|
<line num="11" count="1" type="stmt"/>
|
|
47
45
|
<line num="12" count="1" type="stmt"/>
|
|
48
46
|
<line num="13" count="1" type="stmt"/>
|
|
49
|
-
<line num="
|
|
47
|
+
<line num="19" count="1" type="stmt"/>
|
|
50
48
|
<line num="20" count="1" type="stmt"/>
|
|
51
49
|
<line num="21" count="1" type="stmt"/>
|
|
52
50
|
<line num="22" count="1" type="stmt"/>
|
|
53
51
|
<line num="23" count="1" type="stmt"/>
|
|
54
52
|
<line num="24" count="1" type="stmt"/>
|
|
55
53
|
<line num="25" count="1" type="stmt"/>
|
|
56
|
-
<line num="
|
|
54
|
+
<line num="27" count="1" type="stmt"/>
|
|
57
55
|
<line num="28" count="1" type="stmt"/>
|
|
58
56
|
<line num="29" count="1" type="stmt"/>
|
|
59
57
|
<line num="30" count="1" type="stmt"/>
|
|
60
|
-
<line num="31" count="1" type="stmt"/>
|
|
61
|
-
<line num="32" count="1" type="stmt"/>
|
|
62
|
-
<line num="33" count="1" type="stmt"/>
|
|
63
|
-
<line num="34" count="1" type="stmt"/>
|
|
64
|
-
<line num="35" count="1" type="stmt"/>
|
|
65
|
-
<line num="36" count="1" type="stmt"/>
|
|
66
|
-
<line num="37" count="1" type="stmt"/>
|
|
67
58
|
<line num="38" count="1" type="stmt"/>
|
|
68
|
-
<line num="39" count="1" type="stmt"/>
|
|
69
59
|
<line num="40" count="1" type="stmt"/>
|
|
70
|
-
<line num="
|
|
71
|
-
<line num="
|
|
72
|
-
<line num="
|
|
73
|
-
<line num="
|
|
74
|
-
<line num="
|
|
75
|
-
<line num="
|
|
76
|
-
<line num="
|
|
60
|
+
<line num="42" count="1" type="stmt"/>
|
|
61
|
+
<line num="43" count="1" type="stmt"/>
|
|
62
|
+
<line num="44" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
63
|
+
<line num="45" count="13" type="cond" truecount="0" falsecount="1"/>
|
|
64
|
+
<line num="47" count="13" type="stmt"/>
|
|
65
|
+
<line num="48" count="13" type="stmt"/>
|
|
66
|
+
<line num="50" count="13" type="stmt"/>
|
|
67
|
+
<line num="51" count="13" type="stmt"/>
|
|
68
|
+
<line num="52" count="13" type="cond" truecount="0" falsecount="1"/>
|
|
69
|
+
<line num="53" count="0" type="stmt"/>
|
|
70
|
+
<line num="54" count="13" type="cond" truecount="0" falsecount="1"/>
|
|
71
|
+
<line num="55" count="0" type="stmt"/>
|
|
72
|
+
<line num="57" count="13" type="stmt"/>
|
|
77
73
|
<line num="58" count="13" type="stmt"/>
|
|
78
74
|
<line num="59" count="13" type="stmt"/>
|
|
79
|
-
<line num="
|
|
80
|
-
<line num="62" count="13" type="
|
|
81
|
-
<line num="63" count="13" type="cond" truecount="
|
|
82
|
-
<line num="
|
|
83
|
-
<line num="
|
|
84
|
-
<line num="
|
|
85
|
-
<line num="
|
|
86
|
-
<line num="
|
|
87
|
-
<line num="
|
|
88
|
-
<line num="
|
|
89
|
-
<line num="
|
|
90
|
-
<line num="
|
|
91
|
-
<line num="76" count="
|
|
92
|
-
<line num="
|
|
93
|
-
<line num="
|
|
94
|
-
<line num="
|
|
95
|
-
<line num="
|
|
96
|
-
<line num="
|
|
75
|
+
<line num="60" count="13" type="stmt"/>
|
|
76
|
+
<line num="62" count="13" type="cond" truecount="3" falsecount="0"/>
|
|
77
|
+
<line num="63" count="13" type="cond" truecount="3" falsecount="0"/>
|
|
78
|
+
<line num="65" count="13" type="stmt"/>
|
|
79
|
+
<line num="67" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
80
|
+
<line num="68" count="9" type="stmt"/>
|
|
81
|
+
<line num="69" count="9" type="cond" truecount="0" falsecount="1"/>
|
|
82
|
+
<line num="70" count="9" type="cond" truecount="0" falsecount="1"/>
|
|
83
|
+
<line num="71" count="9" type="stmt"/>
|
|
84
|
+
<line num="73" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
85
|
+
<line num="74" count="3" type="stmt"/>
|
|
86
|
+
<line num="75" count="3" type="stmt"/>
|
|
87
|
+
<line num="76" count="3" type="stmt"/>
|
|
88
|
+
<line num="77" count="3" type="stmt"/>
|
|
89
|
+
<line num="78" count="3" type="stmt"/>
|
|
90
|
+
<line num="79" count="3" type="stmt"/>
|
|
91
|
+
<line num="80" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
92
|
+
<line num="81" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
93
|
+
<line num="82" count="3" type="stmt"/>
|
|
97
94
|
<line num="84" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
98
|
-
<line num="85" count="
|
|
99
|
-
<line num="86" count="
|
|
100
|
-
<line num="87" count="
|
|
101
|
-
<line num="88" count="
|
|
102
|
-
<line num="89" count="
|
|
103
|
-
<line num="90" count="
|
|
104
|
-
<line num="91" count="
|
|
105
|
-
<line num="92" count="
|
|
106
|
-
<line num="
|
|
107
|
-
<line num="95" count="
|
|
108
|
-
<line num="96" count="
|
|
109
|
-
<line num="97" count="
|
|
110
|
-
<line num="98" count="
|
|
111
|
-
<line num="99" count="
|
|
112
|
-
<line num="100" count="
|
|
113
|
-
<line num="101" count="
|
|
114
|
-
<line num="
|
|
115
|
-
<line num="
|
|
116
|
-
<line num="105" count="
|
|
95
|
+
<line num="85" count="8" type="stmt"/>
|
|
96
|
+
<line num="86" count="8" type="stmt"/>
|
|
97
|
+
<line num="87" count="8" type="stmt"/>
|
|
98
|
+
<line num="88" count="8" type="stmt"/>
|
|
99
|
+
<line num="89" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
100
|
+
<line num="90" count="8" type="stmt"/>
|
|
101
|
+
<line num="91" count="8" type="stmt"/>
|
|
102
|
+
<line num="92" count="8" type="stmt"/>
|
|
103
|
+
<line num="94" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
104
|
+
<line num="95" count="1" type="stmt"/>
|
|
105
|
+
<line num="96" count="1" type="stmt"/>
|
|
106
|
+
<line num="97" count="1" type="stmt"/>
|
|
107
|
+
<line num="98" count="1" type="stmt"/>
|
|
108
|
+
<line num="99" count="1" type="stmt"/>
|
|
109
|
+
<line num="100" count="1" type="stmt"/>
|
|
110
|
+
<line num="101" count="1" type="stmt"/>
|
|
111
|
+
<line num="103" count="13" type="stmt"/>
|
|
112
|
+
<line num="104" count="13" type="stmt"/>
|
|
113
|
+
<line num="105" count="1" type="stmt"/>
|
|
117
114
|
<line num="106" count="1" type="stmt"/>
|
|
118
|
-
<line num="107" count="
|
|
119
|
-
<line num="108" count="
|
|
115
|
+
<line num="107" count="0" type="stmt"/>
|
|
116
|
+
<line num="108" count="0" type="stmt"/>
|
|
120
117
|
<line num="109" count="1" type="stmt"/>
|
|
121
|
-
<line num="
|
|
122
|
-
<line num="
|
|
123
|
-
<line num="
|
|
124
|
-
<line num="114" count="
|
|
125
|
-
<line num="115" count="
|
|
126
|
-
<line num="116" count="
|
|
127
|
-
<line num="117" count="
|
|
128
|
-
<line num="118" count="
|
|
129
|
-
<line num="119" count="
|
|
130
|
-
<line num="120" count="
|
|
131
|
-
<line num="
|
|
132
|
-
<line num="123" count="
|
|
133
|
-
<line num="124" count="
|
|
134
|
-
<line num="125" count="
|
|
135
|
-
<line num="126" count="
|
|
136
|
-
<line num="127" count="
|
|
137
|
-
<line num="128" count="
|
|
138
|
-
<line num="129" count="
|
|
139
|
-
<line num="130" count="
|
|
118
|
+
<line num="111" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
119
|
+
<line num="112" count="3" type="stmt"/>
|
|
120
|
+
<line num="113" count="3" type="stmt"/>
|
|
121
|
+
<line num="114" count="3" type="stmt"/>
|
|
122
|
+
<line num="115" count="3" type="stmt"/>
|
|
123
|
+
<line num="116" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
124
|
+
<line num="117" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
125
|
+
<line num="118" count="2" type="stmt"/>
|
|
126
|
+
<line num="119" count="2" type="stmt"/>
|
|
127
|
+
<line num="120" count="6" type="stmt"/>
|
|
128
|
+
<line num="121" count="3" type="stmt"/>
|
|
129
|
+
<line num="123" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
130
|
+
<line num="124" count="9" type="stmt"/>
|
|
131
|
+
<line num="125" count="9" type="stmt"/>
|
|
132
|
+
<line num="126" count="9" type="stmt"/>
|
|
133
|
+
<line num="127" count="9" type="stmt"/>
|
|
134
|
+
<line num="128" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
135
|
+
<line num="129" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
136
|
+
<line num="130" count="6" type="stmt"/>
|
|
140
137
|
<line num="131" count="6" type="stmt"/>
|
|
141
|
-
<line num="132" count="
|
|
142
|
-
<line num="
|
|
143
|
-
<line num="
|
|
144
|
-
<line num="
|
|
145
|
-
<line num="
|
|
146
|
-
<line num="
|
|
147
|
-
<line num="
|
|
148
|
-
<line num="
|
|
149
|
-
<line num="
|
|
150
|
-
<line num="
|
|
151
|
-
<line num="
|
|
152
|
-
<line num="
|
|
153
|
-
<line num="147" count="
|
|
154
|
-
<line num="148" count="
|
|
155
|
-
<line num="149" count="
|
|
156
|
-
<line num="150" count="
|
|
157
|
-
<line num="
|
|
158
|
-
<line num="
|
|
159
|
-
<line num="
|
|
160
|
-
<line num="
|
|
161
|
-
<line num="
|
|
162
|
-
<line num="157" count="
|
|
163
|
-
<line num="158" count="
|
|
164
|
-
<line num="159" count="
|
|
165
|
-
<line num="
|
|
166
|
-
<line num="
|
|
167
|
-
<line num="163" count="
|
|
168
|
-
<line num="164" count="2" type="stmt"/>
|
|
169
|
-
<line num="165" count="2" type="stmt"/>
|
|
170
|
-
<line num="166" count="2" type="stmt"/>
|
|
171
|
-
<line num="167" count="2" type="stmt"/>
|
|
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"/>
|
|
177
|
-
<line num="174" count="3" type="stmt"/>
|
|
138
|
+
<line num="132" count="18" type="stmt"/>
|
|
139
|
+
<line num="133" count="9" type="stmt"/>
|
|
140
|
+
<line num="136" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
141
|
+
<line num="137" count="1" type="stmt"/>
|
|
142
|
+
<line num="138" count="1" type="stmt"/>
|
|
143
|
+
<line num="139" count="1" type="stmt"/>
|
|
144
|
+
<line num="140" count="1" type="stmt"/>
|
|
145
|
+
<line num="141" count="1" type="stmt"/>
|
|
146
|
+
<line num="142" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
147
|
+
<line num="143" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
148
|
+
<line num="144" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
149
|
+
<line num="146" count="2" type="stmt"/>
|
|
150
|
+
<line num="147" count="2" type="stmt"/>
|
|
151
|
+
<line num="148" count="2" type="stmt"/>
|
|
152
|
+
<line num="149" count="2" type="stmt"/>
|
|
153
|
+
<line num="150" count="2" type="stmt"/>
|
|
154
|
+
<line num="152" count="2" type="stmt"/>
|
|
155
|
+
<line num="153" count="2" type="stmt"/>
|
|
156
|
+
<line num="154" count="2" type="stmt"/>
|
|
157
|
+
<line num="155" count="2" type="stmt"/>
|
|
158
|
+
<line num="156" count="2" type="stmt"/>
|
|
159
|
+
<line num="157" count="4" type="stmt"/>
|
|
160
|
+
<line num="158" count="5" type="stmt"/>
|
|
161
|
+
<line num="159" count="1" type="stmt"/>
|
|
162
|
+
<line num="161" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
163
|
+
<line num="162" count="3" type="stmt"/>
|
|
164
|
+
<line num="163" count="3" type="stmt"/>
|
|
178
165
|
</file>
|
|
179
166
|
<file name="consistentDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/consistentDependencies.ts">
|
|
180
|
-
<metrics statements="
|
|
167
|
+
<metrics statements="78" coveredstatements="76" conditionals="17" coveredconditionals="16" methods="5" coveredmethods="5"/>
|
|
181
168
|
<line num="1" count="1" type="stmt"/>
|
|
182
169
|
<line num="9" count="1" type="stmt"/>
|
|
183
170
|
<line num="10" count="1" type="stmt"/>
|
|
184
171
|
<line num="11" count="1" type="stmt"/>
|
|
185
|
-
<line num="12" count="1" type="stmt"/>
|
|
186
172
|
<line num="13" count="1" type="stmt"/>
|
|
187
173
|
<line num="14" count="1" type="stmt"/>
|
|
188
174
|
<line num="15" count="1" type="stmt"/>
|
|
189
175
|
<line num="16" count="1" type="stmt"/>
|
|
190
|
-
<line num="
|
|
176
|
+
<line num="17" count="1" type="stmt"/>
|
|
177
|
+
<line num="18" count="1" type="stmt"/>
|
|
191
178
|
<line num="21" count="1" type="stmt"/>
|
|
192
|
-
<line num="
|
|
193
|
-
<line num="
|
|
194
|
-
<line num="
|
|
195
|
-
<line num="
|
|
179
|
+
<line num="23" count="1" type="stmt"/>
|
|
180
|
+
<line num="24" count="1" type="stmt"/>
|
|
181
|
+
<line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
182
|
+
<line num="26" count="7" type="stmt"/>
|
|
196
183
|
<line num="27" count="7" type="stmt"/>
|
|
197
|
-
<line num="
|
|
198
|
-
<line num="
|
|
199
|
-
<line num="31" count="
|
|
200
|
-
<line num="
|
|
201
|
-
<line num="33" count="14" type="stmt"/>
|
|
184
|
+
<line num="29" count="7" type="stmt"/>
|
|
185
|
+
<line num="30" count="1" type="stmt"/>
|
|
186
|
+
<line num="31" count="1" type="stmt"/>
|
|
187
|
+
<line num="33" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
202
188
|
<line num="34" count="14" type="stmt"/>
|
|
203
189
|
<line num="35" count="14" type="stmt"/>
|
|
204
190
|
<line num="36" count="14" type="stmt"/>
|
|
205
191
|
<line num="37" count="14" type="stmt"/>
|
|
206
192
|
<line num="38" count="14" type="stmt"/>
|
|
193
|
+
<line num="39" count="14" type="stmt"/>
|
|
207
194
|
<line num="40" count="14" type="stmt"/>
|
|
208
|
-
<line num="
|
|
209
|
-
<line num="43" count="14" type="
|
|
210
|
-
<line num="
|
|
211
|
-
<line num="
|
|
212
|
-
<line num="
|
|
213
|
-
<line num="48" count="
|
|
214
|
-
<line num="
|
|
215
|
-
<line num="
|
|
195
|
+
<line num="42" count="14" type="stmt"/>
|
|
196
|
+
<line num="43" count="14" type="stmt"/>
|
|
197
|
+
<line num="45" count="14" type="cond" truecount="2" falsecount="0"/>
|
|
198
|
+
<line num="46" count="14" type="cond" truecount="2" falsecount="0"/>
|
|
199
|
+
<line num="47" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
200
|
+
<line num="48" count="1" type="stmt"/>
|
|
201
|
+
<line num="50" count="14" type="cond" truecount="2" falsecount="0"/>
|
|
202
|
+
<line num="51" count="7" type="stmt"/>
|
|
216
203
|
<line num="52" count="7" type="stmt"/>
|
|
217
|
-
<line num="53" count="7" type="stmt"/>
|
|
218
204
|
<line num="54" count="7" type="stmt"/>
|
|
219
205
|
<line num="55" count="7" type="stmt"/>
|
|
220
|
-
<line num="
|
|
221
|
-
<line num="
|
|
222
|
-
<line num="59" count="
|
|
206
|
+
<line num="56" count="7" type="stmt"/>
|
|
207
|
+
<line num="57" count="7" type="stmt"/>
|
|
208
|
+
<line num="59" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
223
209
|
<line num="60" count="2" type="stmt"/>
|
|
224
210
|
<line num="61" count="2" type="stmt"/>
|
|
225
|
-
<line num="62" count="2" type="
|
|
226
|
-
<line num="63" count="
|
|
227
|
-
<line num="64" count="
|
|
211
|
+
<line num="62" count="2" type="stmt"/>
|
|
212
|
+
<line num="63" count="2" type="stmt"/>
|
|
213
|
+
<line num="64" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
228
214
|
<line num="65" count="1" type="stmt"/>
|
|
229
215
|
<line num="66" count="1" type="stmt"/>
|
|
230
|
-
<line num="67" count="
|
|
231
|
-
<line num="68" count="
|
|
232
|
-
<line num="69" count="
|
|
233
|
-
<line num="
|
|
234
|
-
<line num="
|
|
235
|
-
<line num="73" count="7" type="
|
|
216
|
+
<line num="67" count="1" type="stmt"/>
|
|
217
|
+
<line num="68" count="1" type="stmt"/>
|
|
218
|
+
<line num="69" count="2" type="stmt"/>
|
|
219
|
+
<line num="70" count="2" type="stmt"/>
|
|
220
|
+
<line num="71" count="14" type="stmt"/>
|
|
221
|
+
<line num="73" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
236
222
|
<line num="74" count="7" type="stmt"/>
|
|
223
|
+
<line num="75" count="7" type="stmt"/>
|
|
237
224
|
<line num="76" count="7" type="stmt"/>
|
|
238
225
|
<line num="78" count="7" type="stmt"/>
|
|
239
|
-
<line num="
|
|
240
|
-
<line num="
|
|
241
|
-
<line num="
|
|
242
|
-
<line num="
|
|
243
|
-
<line num="
|
|
244
|
-
<line num="
|
|
226
|
+
<line num="80" count="7" type="stmt"/>
|
|
227
|
+
<line num="81" count="7" type="stmt"/>
|
|
228
|
+
<line num="82" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
229
|
+
<line num="83" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
230
|
+
<line num="84" count="4" type="stmt"/>
|
|
231
|
+
<line num="85" count="4" type="stmt"/>
|
|
245
232
|
<line num="86" count="7" type="stmt"/>
|
|
246
|
-
<line num="
|
|
247
|
-
<line num="89" count="
|
|
248
|
-
<line num="
|
|
249
|
-
<line num="91" count="1" type="stmt"/>
|
|
233
|
+
<line num="88" count="7" type="stmt"/>
|
|
234
|
+
<line num="89" count="7" type="stmt"/>
|
|
235
|
+
<line num="91" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
250
236
|
<line num="92" count="1" type="stmt"/>
|
|
251
237
|
<line num="93" count="1" type="stmt"/>
|
|
252
|
-
<line num="
|
|
253
|
-
<line num="
|
|
254
|
-
<line num="97" count="
|
|
255
|
-
<line num="98" count="
|
|
256
|
-
<line num="
|
|
257
|
-
<line num="
|
|
238
|
+
<line num="94" count="1" type="stmt"/>
|
|
239
|
+
<line num="95" count="1" type="stmt"/>
|
|
240
|
+
<line num="97" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
241
|
+
<line num="98" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
242
|
+
<line num="99" count="0" type="stmt"/>
|
|
243
|
+
<line num="100" count="0" type="stmt"/>
|
|
244
|
+
<line num="102" count="1" type="stmt"/>
|
|
245
|
+
<line num="103" count="1" type="stmt"/>
|
|
258
246
|
</file>
|
|
259
247
|
<file name="consistentVersions.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/consistentVersions.ts">
|
|
260
|
-
<metrics statements="
|
|
248
|
+
<metrics statements="186" coveredstatements="176" conditionals="33" coveredconditionals="30" methods="7" coveredmethods="7"/>
|
|
261
249
|
<line num="1" count="1" type="stmt"/>
|
|
262
250
|
<line num="9" count="1" type="stmt"/>
|
|
263
251
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -271,150 +259,182 @@
|
|
|
271
259
|
<line num="21" count="1" type="stmt"/>
|
|
272
260
|
<line num="22" count="1" type="stmt"/>
|
|
273
261
|
<line num="23" count="1" type="stmt"/>
|
|
274
|
-
<line num="25" count="
|
|
275
|
-
<line num="26" count="
|
|
276
|
-
<line num="27" count="
|
|
277
|
-
<line num="28" count="
|
|
278
|
-
<line num="29" count="
|
|
279
|
-
<line num="30" count="
|
|
280
|
-
<line num="31" count="
|
|
281
|
-
<line num="32" count="
|
|
282
|
-
<line num="33" count="
|
|
283
|
-
<line num="34" count="
|
|
284
|
-
<line num="35" count="
|
|
285
|
-
<line num="36" count="
|
|
286
|
-
<line num="37" count="
|
|
287
|
-
<line num="38" count="
|
|
288
|
-
<line num="39" count="
|
|
289
|
-
<line num="40" count="
|
|
290
|
-
<line num="41" count="
|
|
291
|
-
<line num="42" count="
|
|
292
|
-
<line num="43" count="
|
|
293
|
-
<line num="44" count="
|
|
294
|
-
<line num="45" count="
|
|
295
|
-
<line num="46" count="
|
|
262
|
+
<line num="25" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
263
|
+
<line num="26" count="17" type="stmt"/>
|
|
264
|
+
<line num="27" count="17" type="stmt"/>
|
|
265
|
+
<line num="28" count="17" type="stmt"/>
|
|
266
|
+
<line num="29" count="17" type="stmt"/>
|
|
267
|
+
<line num="30" count="17" type="stmt"/>
|
|
268
|
+
<line num="31" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
269
|
+
<line num="32" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
270
|
+
<line num="33" count="7" type="stmt"/>
|
|
271
|
+
<line num="34" count="7" type="stmt"/>
|
|
272
|
+
<line num="35" count="7" type="stmt"/>
|
|
273
|
+
<line num="36" count="7" type="stmt"/>
|
|
274
|
+
<line num="37" count="7" type="stmt"/>
|
|
275
|
+
<line num="38" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
276
|
+
<line num="39" count="15" type="stmt"/>
|
|
277
|
+
<line num="40" count="15" type="stmt"/>
|
|
278
|
+
<line num="41" count="15" type="stmt"/>
|
|
279
|
+
<line num="42" count="15" type="stmt"/>
|
|
280
|
+
<line num="43" count="15" type="stmt"/>
|
|
281
|
+
<line num="44" count="15" type="stmt"/>
|
|
282
|
+
<line num="45" count="22" type="stmt"/>
|
|
283
|
+
<line num="46" count="17" type="stmt"/>
|
|
296
284
|
<line num="48" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
297
|
-
<line num="49" count="
|
|
298
|
-
<line num="50" count="
|
|
299
|
-
<line num="51" count="
|
|
300
|
-
<line num="52" count="
|
|
301
|
-
<line num="53" count="
|
|
302
|
-
<line num="54" count="
|
|
303
|
-
<line num="
|
|
304
|
-
<line num="
|
|
305
|
-
<line num="58" count="
|
|
306
|
-
<line num="59" count="
|
|
307
|
-
<line num="60" count="
|
|
308
|
-
<line num="
|
|
309
|
-
<line num="
|
|
310
|
-
<line num="
|
|
311
|
-
<line num="65" count="
|
|
312
|
-
<line num="66" count="
|
|
313
|
-
<line num="67" count="
|
|
314
|
-
<line num="68" count="
|
|
315
|
-
<line num="69" count="
|
|
316
|
-
<line num="
|
|
317
|
-
<line num="
|
|
318
|
-
<line num="
|
|
319
|
-
<line num="
|
|
320
|
-
<line num="
|
|
321
|
-
<line num="
|
|
322
|
-
<line num="
|
|
323
|
-
<line num="
|
|
324
|
-
<line num="
|
|
325
|
-
<line num="
|
|
326
|
-
<line num="
|
|
327
|
-
<line num="
|
|
328
|
-
<line num="
|
|
329
|
-
<line num="
|
|
330
|
-
<line num="
|
|
331
|
-
<line num="
|
|
332
|
-
<line num="
|
|
333
|
-
<line num="
|
|
334
|
-
<line num="
|
|
335
|
-
<line num="
|
|
336
|
-
<line num="
|
|
337
|
-
<line num="
|
|
338
|
-
<line num="
|
|
339
|
-
<line num="
|
|
340
|
-
<line num="
|
|
341
|
-
<line num="
|
|
342
|
-
<line num="
|
|
343
|
-
<line num="
|
|
344
|
-
<line num="
|
|
345
|
-
<line num="
|
|
346
|
-
<line num="
|
|
347
|
-
<line num="
|
|
348
|
-
<line num="
|
|
349
|
-
<line num="
|
|
350
|
-
<line num="
|
|
351
|
-
<line num="
|
|
352
|
-
<line num="
|
|
353
|
-
<line num="
|
|
354
|
-
<line num="
|
|
355
|
-
<line num="
|
|
356
|
-
<line num="
|
|
357
|
-
<line num="
|
|
358
|
-
<line num="
|
|
359
|
-
<line num="
|
|
360
|
-
<line num="
|
|
361
|
-
<line num="
|
|
362
|
-
<line num="
|
|
363
|
-
<line num="
|
|
364
|
-
<line num="
|
|
365
|
-
<line num="
|
|
366
|
-
<line num="
|
|
367
|
-
<line num="
|
|
368
|
-
<line num="
|
|
369
|
-
<line num="
|
|
370
|
-
<line num="
|
|
371
|
-
<line num="
|
|
372
|
-
<line num="
|
|
373
|
-
<line num="
|
|
374
|
-
<line num="
|
|
375
|
-
<line num="133" count="6" type="stmt"/>
|
|
376
|
-
<line num="134" count="6" type="stmt"/>
|
|
377
|
-
<line num="135" count="6" type="stmt"/>
|
|
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"/>
|
|
285
|
+
<line num="49" count="20" type="stmt"/>
|
|
286
|
+
<line num="50" count="20" type="stmt"/>
|
|
287
|
+
<line num="51" count="20" type="stmt"/>
|
|
288
|
+
<line num="52" count="20" type="stmt"/>
|
|
289
|
+
<line num="53" count="20" type="stmt"/>
|
|
290
|
+
<line num="54" count="20" type="cond" truecount="1" falsecount="0"/>
|
|
291
|
+
<line num="55" count="5" type="stmt"/>
|
|
292
|
+
<line num="56" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
293
|
+
<line num="58" count="15" type="stmt"/>
|
|
294
|
+
<line num="59" count="15" type="stmt"/>
|
|
295
|
+
<line num="60" count="20" type="stmt"/>
|
|
296
|
+
<line num="62" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
297
|
+
<line num="63" count="8" type="stmt"/>
|
|
298
|
+
<line num="64" count="8" type="stmt"/>
|
|
299
|
+
<line num="65" count="8" type="stmt"/>
|
|
300
|
+
<line num="66" count="8" type="stmt"/>
|
|
301
|
+
<line num="67" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
302
|
+
<line num="68" count="1" type="stmt"/>
|
|
303
|
+
<line num="69" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
304
|
+
<line num="71" count="7" type="stmt"/>
|
|
305
|
+
<line num="72" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
306
|
+
<line num="73" count="0" type="stmt"/>
|
|
307
|
+
<line num="74" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
308
|
+
<line num="76" count="7" type="stmt"/>
|
|
309
|
+
<line num="77" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
310
|
+
<line num="78" count="7" type="stmt"/>
|
|
311
|
+
<line num="79" count="7" type="stmt"/>
|
|
312
|
+
<line num="81" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
313
|
+
<line num="82" count="15" type="stmt"/>
|
|
314
|
+
<line num="83" count="15" type="stmt"/>
|
|
315
|
+
<line num="84" count="15" type="stmt"/>
|
|
316
|
+
<line num="85" count="15" type="stmt"/>
|
|
317
|
+
<line num="86" count="15" type="stmt"/>
|
|
318
|
+
<line num="87" count="15" type="stmt"/>
|
|
319
|
+
<line num="90" count="15" type="stmt"/>
|
|
320
|
+
<line num="91" count="15" type="stmt"/>
|
|
321
|
+
<line num="93" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
322
|
+
<line num="94" count="10" type="stmt"/>
|
|
323
|
+
<line num="95" count="10" type="cond" truecount="0" falsecount="1"/>
|
|
324
|
+
<line num="96" count="0" type="stmt"/>
|
|
325
|
+
<line num="97" count="0" type="stmt"/>
|
|
326
|
+
<line num="98" count="0" type="stmt"/>
|
|
327
|
+
<line num="99" count="0" type="stmt"/>
|
|
328
|
+
<line num="100" count="10" type="stmt"/>
|
|
329
|
+
<line num="102" count="15" type="stmt"/>
|
|
330
|
+
<line num="103" count="15" type="stmt"/>
|
|
331
|
+
<line num="105" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
332
|
+
<line num="106" count="13" type="stmt"/>
|
|
333
|
+
<line num="107" count="13" type="stmt"/>
|
|
334
|
+
<line num="108" count="13" type="stmt"/>
|
|
335
|
+
<line num="109" count="13" type="stmt"/>
|
|
336
|
+
<line num="110" count="13" type="stmt"/>
|
|
337
|
+
<line num="111" count="13" type="stmt"/>
|
|
338
|
+
<line num="113" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
339
|
+
<line num="114" count="3" type="stmt"/>
|
|
340
|
+
<line num="115" count="3" type="stmt"/>
|
|
341
|
+
<line num="116" count="3" type="stmt"/>
|
|
342
|
+
<line num="117" count="3" type="stmt"/>
|
|
343
|
+
<line num="118" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
344
|
+
<line num="119" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
345
|
+
<line num="120" count="2" type="stmt"/>
|
|
346
|
+
<line num="121" count="2" type="stmt"/>
|
|
347
|
+
<line num="122" count="2" type="stmt"/>
|
|
348
|
+
<line num="123" count="3" type="stmt"/>
|
|
349
|
+
<line num="124" count="3" type="stmt"/>
|
|
350
|
+
<line num="125" count="13" type="stmt"/>
|
|
351
|
+
<line num="127" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
352
|
+
<line num="128" count="12" type="stmt"/>
|
|
353
|
+
<line num="130" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
354
|
+
<line num="131" count="7" type="stmt"/>
|
|
355
|
+
<line num="132" count="7" type="stmt"/>
|
|
356
|
+
<line num="133" count="7" type="stmt"/>
|
|
357
|
+
<line num="134" count="7" type="stmt"/>
|
|
358
|
+
<line num="135" count="7" type="stmt"/>
|
|
359
|
+
<line num="136" count="7" type="stmt"/>
|
|
360
|
+
<line num="138" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
361
|
+
<line num="139" count="2" type="stmt"/>
|
|
362
|
+
<line num="140" count="2" type="stmt"/>
|
|
383
363
|
<line num="141" count="2" type="stmt"/>
|
|
384
364
|
<line num="142" count="2" type="stmt"/>
|
|
385
|
-
<line num="143" count="2" type="
|
|
386
|
-
<line num="144" count="2" type="
|
|
365
|
+
<line num="143" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
366
|
+
<line num="144" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
387
367
|
<line num="145" count="2" type="stmt"/>
|
|
388
368
|
<line num="146" count="2" type="stmt"/>
|
|
389
369
|
<line num="147" count="2" type="stmt"/>
|
|
390
370
|
<line num="148" count="2" type="stmt"/>
|
|
391
371
|
<line num="149" count="2" type="stmt"/>
|
|
392
|
-
<line num="
|
|
393
|
-
<line num="
|
|
394
|
-
<line num="153" count="
|
|
395
|
-
<line num="154" count="
|
|
396
|
-
<line num="155" count="
|
|
397
|
-
<line num="156" count="
|
|
398
|
-
<line num="157" count="
|
|
399
|
-
<line num="158" count="
|
|
400
|
-
<line num="159" count="
|
|
401
|
-
<line num="
|
|
402
|
-
<line num="
|
|
403
|
-
<line num="
|
|
404
|
-
<line num="
|
|
405
|
-
<line num="
|
|
406
|
-
<line num="
|
|
407
|
-
<line num="
|
|
408
|
-
<line num="
|
|
409
|
-
<line num="
|
|
410
|
-
<line num="
|
|
411
|
-
<line num="
|
|
412
|
-
<line num="
|
|
413
|
-
<line num="
|
|
414
|
-
<line num="
|
|
372
|
+
<line num="150" count="7" type="stmt"/>
|
|
373
|
+
<line num="151" count="15" type="stmt"/>
|
|
374
|
+
<line num="153" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
375
|
+
<line num="154" count="7" type="stmt"/>
|
|
376
|
+
<line num="155" count="7" type="stmt"/>
|
|
377
|
+
<line num="156" count="7" type="stmt"/>
|
|
378
|
+
<line num="157" count="7" type="stmt"/>
|
|
379
|
+
<line num="158" count="7" type="stmt"/>
|
|
380
|
+
<line num="159" count="7" type="stmt"/>
|
|
381
|
+
<line num="162" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
382
|
+
<line num="163" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
383
|
+
<line num="165" count="7" type="stmt"/>
|
|
384
|
+
<line num="166" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
385
|
+
<line num="167" count="17" type="stmt"/>
|
|
386
|
+
<line num="168" count="17" type="stmt"/>
|
|
387
|
+
<line num="169" count="17" type="stmt"/>
|
|
388
|
+
<line num="170" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
389
|
+
<line num="171" count="0" type="stmt"/>
|
|
390
|
+
<line num="172" count="0" type="stmt"/>
|
|
391
|
+
<line num="173" count="0" type="stmt"/>
|
|
392
|
+
<line num="174" count="0" type="stmt"/>
|
|
393
|
+
<line num="175" count="17" type="stmt"/>
|
|
394
|
+
<line num="176" count="17" type="stmt"/>
|
|
395
|
+
<line num="177" count="7" type="stmt"/>
|
|
396
|
+
<line num="179" count="7" type="stmt"/>
|
|
397
|
+
<line num="180" count="7" type="stmt"/>
|
|
398
|
+
<line num="182" count="7" type="stmt"/>
|
|
399
|
+
<line num="183" count="7" type="stmt"/>
|
|
400
|
+
<line num="184" count="7" type="stmt"/>
|
|
401
|
+
<line num="185" count="7" type="stmt"/>
|
|
402
|
+
<line num="186" count="7" type="stmt"/>
|
|
403
|
+
<line num="187" count="7" type="stmt"/>
|
|
404
|
+
<line num="189" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
405
|
+
<line num="190" count="2" type="stmt"/>
|
|
406
|
+
<line num="191" count="2" type="stmt"/>
|
|
407
|
+
<line num="192" count="2" type="stmt"/>
|
|
408
|
+
<line num="193" count="2" type="stmt"/>
|
|
409
|
+
<line num="194" count="2" type="stmt"/>
|
|
410
|
+
<line num="195" count="2" type="stmt"/>
|
|
411
|
+
<line num="196" count="2" type="stmt"/>
|
|
412
|
+
<line num="197" count="2" type="stmt"/>
|
|
413
|
+
<line num="198" count="2" type="stmt"/>
|
|
414
|
+
<line num="199" count="7" type="stmt"/>
|
|
415
|
+
<line num="201" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
416
|
+
<line num="202" count="6" type="stmt"/>
|
|
417
|
+
<line num="204" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
418
|
+
<line num="205" count="1" type="stmt"/>
|
|
419
|
+
<line num="206" count="1" type="stmt"/>
|
|
420
|
+
<line num="207" count="1" type="stmt"/>
|
|
421
|
+
<line num="208" count="1" type="stmt"/>
|
|
422
|
+
<line num="209" count="1" type="stmt"/>
|
|
423
|
+
<line num="211" count="1" type="stmt"/>
|
|
424
|
+
<line num="212" count="1" type="stmt"/>
|
|
425
|
+
<line num="213" count="1" type="stmt"/>
|
|
426
|
+
<line num="214" count="1" type="stmt"/>
|
|
427
|
+
<line num="215" count="1" type="stmt"/>
|
|
428
|
+
<line num="216" count="1" type="stmt"/>
|
|
429
|
+
<line num="217" count="1" type="stmt"/>
|
|
430
|
+
<line num="218" count="1" type="stmt"/>
|
|
431
|
+
<line num="219" count="1" type="stmt"/>
|
|
432
|
+
<line num="220" count="1" type="stmt"/>
|
|
433
|
+
<line num="221" count="1" type="stmt"/>
|
|
434
|
+
<line num="222" count="7" type="stmt"/>
|
|
415
435
|
</file>
|
|
416
436
|
<file name="fileContents.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/fileContents.ts">
|
|
417
|
-
<metrics statements="
|
|
437
|
+
<metrics statements="120" coveredstatements="112" conditionals="31" coveredconditionals="28" methods="3" coveredmethods="3"/>
|
|
418
438
|
<line num="1" count="1" type="stmt"/>
|
|
419
439
|
<line num="9" count="1" type="stmt"/>
|
|
420
440
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -422,14 +442,12 @@
|
|
|
422
442
|
<line num="12" count="1" type="stmt"/>
|
|
423
443
|
<line num="13" count="1" type="stmt"/>
|
|
424
444
|
<line num="14" count="1" type="stmt"/>
|
|
425
|
-
<line num="15" count="1" type="stmt"/>
|
|
426
445
|
<line num="16" count="1" type="stmt"/>
|
|
427
|
-
<line num="17" count="
|
|
446
|
+
<line num="17" count="1" type="stmt"/>
|
|
428
447
|
<line num="18" count="1" type="stmt"/>
|
|
429
448
|
<line num="19" count="1" type="stmt"/>
|
|
430
|
-
<line num="
|
|
431
|
-
<line num="
|
|
432
|
-
<line num="22" count="1" type="stmt"/>
|
|
449
|
+
<line num="21" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
450
|
+
<line num="22" count="14" type="stmt"/>
|
|
433
451
|
<line num="23" count="1" type="stmt"/>
|
|
434
452
|
<line num="24" count="1" type="stmt"/>
|
|
435
453
|
<line num="25" count="1" type="stmt"/>
|
|
@@ -442,103 +460,132 @@
|
|
|
442
460
|
<line num="32" count="1" type="stmt"/>
|
|
443
461
|
<line num="33" count="1" type="stmt"/>
|
|
444
462
|
<line num="34" count="1" type="stmt"/>
|
|
463
|
+
<line num="35" count="1" type="stmt"/>
|
|
464
|
+
<line num="36" count="1" type="stmt"/>
|
|
465
|
+
<line num="37" count="1" type="stmt"/>
|
|
445
466
|
<line num="38" count="1" type="stmt"/>
|
|
446
467
|
<line num="39" count="1" type="stmt"/>
|
|
447
|
-
<line num="40" count="1" type="
|
|
448
|
-
<line num="41" count="
|
|
449
|
-
<line num="42" count="
|
|
450
|
-
<line num="
|
|
451
|
-
<line num="
|
|
452
|
-
<line num="
|
|
453
|
-
<line num="
|
|
454
|
-
<line num="
|
|
455
|
-
<line num="
|
|
456
|
-
<line num="
|
|
457
|
-
<line num="
|
|
458
|
-
<line num="
|
|
459
|
-
<line num="54" count="0" type="stmt"/>
|
|
460
|
-
<line num="55" count="6" type="stmt"/>
|
|
461
|
-
<line num="57" count="6" type="stmt"/>
|
|
462
|
-
<line num="58" count="6" type="stmt"/>
|
|
463
|
-
<line num="59" count="6" type="stmt"/>
|
|
468
|
+
<line num="40" count="1" type="stmt"/>
|
|
469
|
+
<line num="41" count="1" type="stmt"/>
|
|
470
|
+
<line num="42" count="1" type="stmt"/>
|
|
471
|
+
<line num="46" count="1" type="stmt"/>
|
|
472
|
+
<line num="47" count="1" type="stmt"/>
|
|
473
|
+
<line num="48" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
474
|
+
<line num="49" count="30" type="stmt"/>
|
|
475
|
+
<line num="52" count="30" type="cond" truecount="1" falsecount="0"/>
|
|
476
|
+
<line num="53" count="2" type="stmt"/>
|
|
477
|
+
<line num="54" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
478
|
+
<line num="56" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
479
|
+
<line num="59" count="30" type="cond" truecount="1" falsecount="0"/>
|
|
464
480
|
<line num="60" count="6" type="stmt"/>
|
|
465
481
|
<line num="61" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
466
|
-
<line num="
|
|
467
|
-
<line num="
|
|
468
|
-
<line num="
|
|
469
|
-
<line num="
|
|
470
|
-
<line num="
|
|
471
|
-
<line num="
|
|
472
|
-
<line num="
|
|
473
|
-
<line num="
|
|
474
|
-
<line num="
|
|
475
|
-
<line num="
|
|
476
|
-
<line num="
|
|
477
|
-
<line num="
|
|
478
|
-
<line num="
|
|
479
|
-
<line num="
|
|
480
|
-
<line num="
|
|
481
|
-
<line num="
|
|
482
|
-
<line num="
|
|
483
|
-
<line num="
|
|
484
|
-
<line num="
|
|
485
|
-
<line num="
|
|
486
|
-
<line num="
|
|
487
|
-
<line num="
|
|
488
|
-
<line num="
|
|
489
|
-
<line num="
|
|
490
|
-
<line num="
|
|
491
|
-
<line num="
|
|
492
|
-
<line num="
|
|
493
|
-
<line num="
|
|
494
|
-
<line num="
|
|
495
|
-
<line num="
|
|
496
|
-
<line num="
|
|
497
|
-
<line num="
|
|
498
|
-
<line num="
|
|
499
|
-
<line num="104" count="
|
|
500
|
-
<line num="105" count="
|
|
501
|
-
<line num="106" count="
|
|
502
|
-
<line num="107" count="
|
|
503
|
-
<line num="
|
|
482
|
+
<line num="63" count="18" type="stmt"/>
|
|
483
|
+
<line num="64" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
484
|
+
<line num="65" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
485
|
+
<line num="66" count="16" type="stmt"/>
|
|
486
|
+
<line num="67" count="30" type="cond" truecount="1" falsecount="0"/>
|
|
487
|
+
<line num="68" count="16" type="stmt"/>
|
|
488
|
+
<line num="69" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
489
|
+
<line num="70" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
490
|
+
<line num="71" count="14" type="stmt"/>
|
|
491
|
+
<line num="73" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
492
|
+
<line num="74" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
493
|
+
<line num="75" count="14" type="stmt"/>
|
|
494
|
+
<line num="77" count="16" type="stmt"/>
|
|
495
|
+
<line num="78" count="16" type="stmt"/>
|
|
496
|
+
<line num="79" count="16" type="stmt"/>
|
|
497
|
+
<line num="80" count="16" type="stmt"/>
|
|
498
|
+
<line num="81" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
499
|
+
<line num="82" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
500
|
+
<line num="83" count="2" type="stmt"/>
|
|
501
|
+
<line num="84" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
502
|
+
<line num="85" count="14" type="stmt"/>
|
|
503
|
+
<line num="86" count="14" type="stmt"/>
|
|
504
|
+
<line num="87" count="14" type="stmt"/>
|
|
505
|
+
<line num="88" count="14" type="stmt"/>
|
|
506
|
+
<line num="89" count="14" type="stmt"/>
|
|
507
|
+
<line num="90" count="16" type="stmt"/>
|
|
508
|
+
<line num="91" count="16" type="stmt"/>
|
|
509
|
+
<line num="92" count="16" type="stmt"/>
|
|
510
|
+
<line num="93" count="30" type="stmt"/>
|
|
511
|
+
<line num="94" count="1" type="stmt"/>
|
|
512
|
+
<line num="95" count="1" type="stmt"/>
|
|
513
|
+
<line num="97" count="1" type="stmt"/>
|
|
514
|
+
<line num="102" count="1" type="stmt"/>
|
|
515
|
+
<line num="104" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
516
|
+
<line num="105" count="28" type="stmt"/>
|
|
517
|
+
<line num="106" count="28" type="stmt"/>
|
|
518
|
+
<line num="107" count="28" type="stmt"/>
|
|
519
|
+
<line num="109" count="28" type="cond" truecount="0" falsecount="1"/>
|
|
520
|
+
<line num="110" count="0" type="stmt"/>
|
|
521
|
+
<line num="111" count="0" type="stmt"/>
|
|
522
|
+
<line num="112" count="0" type="stmt"/>
|
|
523
|
+
<line num="113" count="0" type="stmt"/>
|
|
524
|
+
<line num="114" count="0" type="stmt"/>
|
|
525
|
+
<line num="115" count="0" type="stmt"/>
|
|
526
|
+
<line num="117" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
527
|
+
<line num="118" count="8" type="stmt"/>
|
|
528
|
+
<line num="119" count="8" type="stmt"/>
|
|
529
|
+
<line num="120" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
530
|
+
<line num="121" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
531
|
+
<line num="122" count="2" type="stmt"/>
|
|
532
|
+
<line num="123" count="2" type="stmt"/>
|
|
533
|
+
<line num="124" count="2" type="stmt"/>
|
|
534
|
+
<line num="125" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
535
|
+
<line num="127" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
536
|
+
<line num="128" count="6" type="stmt"/>
|
|
537
|
+
<line num="130" count="6" type="stmt"/>
|
|
538
|
+
<line num="131" count="6" type="stmt"/>
|
|
539
|
+
<line num="132" count="6" type="stmt"/>
|
|
540
|
+
<line num="133" count="6" type="stmt"/>
|
|
541
|
+
<line num="134" count="6" type="stmt"/>
|
|
542
|
+
<line num="135" count="6" type="stmt"/>
|
|
543
|
+
<line num="138" count="6" type="stmt"/>
|
|
544
|
+
<line num="139" count="6" type="stmt"/>
|
|
545
|
+
<line num="140" count="28" type="cond" truecount="2" falsecount="0"/>
|
|
546
|
+
<line num="141" count="8" type="stmt"/>
|
|
547
|
+
<line num="142" count="8" type="stmt"/>
|
|
548
|
+
<line num="143" count="8" type="stmt"/>
|
|
549
|
+
<line num="145" count="8" type="stmt"/>
|
|
550
|
+
<line num="146" count="8" type="stmt"/>
|
|
551
|
+
<line num="147" count="20" type="cond" truecount="1" falsecount="0"/>
|
|
552
|
+
<line num="148" count="12" type="stmt"/>
|
|
553
|
+
<line num="149" count="12" type="stmt"/>
|
|
554
|
+
<line num="150" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
555
|
+
<line num="151" count="0" type="stmt"/>
|
|
556
|
+
<line num="152" count="0" type="stmt"/>
|
|
557
|
+
<line num="153" count="28" type="stmt"/>
|
|
504
558
|
</file>
|
|
505
559
|
<file name="forceError.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/forceError.ts">
|
|
506
|
-
<metrics statements="
|
|
560
|
+
<metrics statements="25" coveredstatements="25" conditionals="14" coveredconditionals="14" methods="2" coveredmethods="2"/>
|
|
507
561
|
<line num="1" count="1" type="stmt"/>
|
|
508
562
|
<line num="3" count="1" type="stmt"/>
|
|
509
563
|
<line num="4" count="1" type="stmt"/>
|
|
510
|
-
<line num="
|
|
511
|
-
<line num="
|
|
512
|
-
<line num="
|
|
513
|
-
<line num="
|
|
514
|
-
<line num="
|
|
515
|
-
<line num="
|
|
516
|
-
<line num="
|
|
517
|
-
<line num="
|
|
518
|
-
<line num="
|
|
519
|
-
<line num="
|
|
520
|
-
<line num="
|
|
521
|
-
<line num="
|
|
522
|
-
<line num="
|
|
523
|
-
<line num="
|
|
524
|
-
<line num="
|
|
525
|
-
<line num="
|
|
526
|
-
<line num="
|
|
527
|
-
<line num="
|
|
528
|
-
<line num="
|
|
529
|
-
<line num="
|
|
530
|
-
<line num="
|
|
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"/>
|
|
564
|
+
<line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
565
|
+
<line num="7" count="4" type="stmt"/>
|
|
566
|
+
<line num="8" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
567
|
+
<line num="9" count="2" type="stmt"/>
|
|
568
|
+
<line num="10" count="4" type="stmt"/>
|
|
569
|
+
<line num="11" count="4" type="stmt"/>
|
|
570
|
+
<line num="12" count="4" type="stmt"/>
|
|
571
|
+
<line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
572
|
+
<line num="15" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
573
|
+
<line num="17" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
574
|
+
<line num="18" count="2" type="stmt"/>
|
|
575
|
+
<line num="19" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
576
|
+
<line num="21" count="10" type="stmt"/>
|
|
577
|
+
<line num="23" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
578
|
+
<line num="25" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
579
|
+
<line num="26" count="2" type="stmt"/>
|
|
580
|
+
<line num="27" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
581
|
+
<line num="29" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
582
|
+
<line num="30" count="2" type="stmt"/>
|
|
583
|
+
<line num="31" count="2" type="stmt"/>
|
|
584
|
+
<line num="32" count="16" type="stmt"/>
|
|
538
585
|
<line num="33" count="1" type="stmt"/>
|
|
539
586
|
</file>
|
|
540
587
|
<file name="index.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/index.ts">
|
|
541
|
-
<metrics statements="
|
|
588
|
+
<metrics statements="18" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
542
589
|
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
543
590
|
<line num="8" count="0" type="stmt"/>
|
|
544
591
|
<line num="9" count="0" type="stmt"/>
|
|
@@ -556,9 +603,10 @@
|
|
|
556
603
|
<line num="21" count="0" type="stmt"/>
|
|
557
604
|
<line num="22" count="0" type="stmt"/>
|
|
558
605
|
<line num="24" count="0" type="stmt"/>
|
|
606
|
+
<line num="32" count="0" type="stmt"/>
|
|
559
607
|
</file>
|
|
560
608
|
<file name="mustSatisfyPeerDependencies.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/mustSatisfyPeerDependencies.ts">
|
|
561
|
-
<metrics statements="
|
|
609
|
+
<metrics statements="430" coveredstatements="396" conditionals="136" coveredconditionals="123" methods="10" coveredmethods="10"/>
|
|
562
610
|
<line num="1" count="1" type="stmt"/>
|
|
563
611
|
<line num="9" count="1" type="stmt"/>
|
|
564
612
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -572,585 +620,423 @@
|
|
|
572
620
|
<line num="19" count="1" type="stmt"/>
|
|
573
621
|
<line num="20" count="1" type="stmt"/>
|
|
574
622
|
<line num="21" count="1" type="stmt"/>
|
|
575
|
-
<line num="22" count="1" type="stmt"/>
|
|
576
|
-
<line num="23" count="1" type="stmt"/>
|
|
577
|
-
<line num="24" count="1" type="stmt"/>
|
|
578
623
|
<line num="25" count="1" type="stmt"/>
|
|
579
624
|
<line num="26" count="1" type="stmt"/>
|
|
580
625
|
<line num="27" count="1" type="stmt"/>
|
|
581
626
|
<line num="28" count="1" type="stmt"/>
|
|
582
627
|
<line num="29" count="1" type="stmt"/>
|
|
583
|
-
<line num="30" count="1" type="stmt"/>
|
|
584
|
-
<line num="31" count="1" type="stmt"/>
|
|
585
|
-
<line num="32" count="1" type="stmt"/>
|
|
586
|
-
<line num="33" count="1" type="stmt"/>
|
|
587
|
-
<line num="34" count="1" type="stmt"/>
|
|
588
|
-
<line num="35" count="1" type="stmt"/>
|
|
589
|
-
<line num="36" count="1" type="stmt"/>
|
|
590
|
-
<line num="37" count="1" type="stmt"/>
|
|
591
628
|
<line num="38" count="1" type="stmt"/>
|
|
592
|
-
<line num="39" count="1" type="stmt"/>
|
|
593
|
-
<line num="40" count="1" type="stmt"/>
|
|
594
|
-
<line num="41" count="1" type="stmt"/>
|
|
595
|
-
<line num="42" count="1" type="stmt"/>
|
|
596
|
-
<line num="43" count="1" type="stmt"/>
|
|
597
|
-
<line num="44" count="1" type="stmt"/>
|
|
598
|
-
<line num="45" count="1" type="stmt"/>
|
|
599
|
-
<line num="46" count="1" type="stmt"/>
|
|
600
|
-
<line num="47" count="1" type="stmt"/>
|
|
601
|
-
<line num="48" count="1" type="stmt"/>
|
|
602
|
-
<line num="49" count="1" type="stmt"/>
|
|
603
|
-
<line num="50" count="1" type="stmt"/>
|
|
604
|
-
<line num="51" count="1" type="stmt"/>
|
|
605
|
-
<line num="52" count="1" type="stmt"/>
|
|
606
|
-
<line num="53" count="1" type="stmt"/>
|
|
607
|
-
<line num="54" count="1" type="stmt"/>
|
|
608
|
-
<line num="55" count="1" type="stmt"/>
|
|
609
629
|
<line num="56" count="1" type="stmt"/>
|
|
610
630
|
<line num="57" count="1" type="stmt"/>
|
|
611
|
-
<line num="58" count="1" type="stmt"/>
|
|
612
|
-
<line num="59" count="1" type="stmt"/>
|
|
613
|
-
<line num="60" count="1" type="stmt"/>
|
|
614
|
-
<line num="61" count="1" type="stmt"/>
|
|
615
|
-
<line num="62" count="1" type="stmt"/>
|
|
616
|
-
<line num="63" count="1" type="stmt"/>
|
|
617
|
-
<line num="64" count="1" type="stmt"/>
|
|
618
|
-
<line num="65" count="1" type="stmt"/>
|
|
619
|
-
<line num="66" count="1" type="stmt"/>
|
|
620
|
-
<line num="67" count="1" type="stmt"/>
|
|
621
|
-
<line num="68" count="1" type="stmt"/>
|
|
622
|
-
<line num="69" count="1" type="stmt"/>
|
|
623
|
-
<line num="70" count="1" type="stmt"/>
|
|
624
|
-
<line num="71" count="1" type="stmt"/>
|
|
625
|
-
<line num="72" count="1" type="stmt"/>
|
|
626
|
-
<line num="73" count="1" type="stmt"/>
|
|
627
|
-
<line num="74" count="1" type="stmt"/>
|
|
628
|
-
<line num="75" count="1" type="stmt"/>
|
|
629
|
-
<line num="76" count="1" type="stmt"/>
|
|
630
|
-
<line num="77" count="1" type="stmt"/>
|
|
631
|
-
<line num="78" count="1" type="stmt"/>
|
|
632
|
-
<line num="79" count="1" type="stmt"/>
|
|
633
|
-
<line num="80" count="1" type="stmt"/>
|
|
634
631
|
<line num="81" count="1" type="stmt"/>
|
|
635
632
|
<line num="82" count="1" type="stmt"/>
|
|
636
|
-
<line num="83" count="1" type="stmt"/>
|
|
637
|
-
<line num="84" count="1" type="stmt"/>
|
|
638
|
-
<line num="85" count="1" type="stmt"/>
|
|
639
|
-
<line num="86" count="1" type="stmt"/>
|
|
640
|
-
<line num="87" count="1" type="stmt"/>
|
|
641
|
-
<line num="88" count="1" type="stmt"/>
|
|
642
|
-
<line num="89" count="1" type="stmt"/>
|
|
643
|
-
<line num="90" count="1" type="stmt"/>
|
|
644
|
-
<line num="91" count="1" type="stmt"/>
|
|
645
|
-
<line num="92" count="1" type="stmt"/>
|
|
646
|
-
<line num="93" count="1" type="stmt"/>
|
|
647
|
-
<line num="94" count="1" type="stmt"/>
|
|
648
|
-
<line num="95" count="1" type="stmt"/>
|
|
649
|
-
<line num="96" count="1" type="stmt"/>
|
|
650
633
|
<line num="97" count="1" type="stmt"/>
|
|
651
634
|
<line num="98" count="1" type="stmt"/>
|
|
652
|
-
<line num="
|
|
653
|
-
<line num="
|
|
654
|
-
<line num="
|
|
655
|
-
<line num="
|
|
656
|
-
<line num="
|
|
657
|
-
<line num="
|
|
658
|
-
<line num="
|
|
659
|
-
<line num="
|
|
660
|
-
<line num="
|
|
661
|
-
<line num="
|
|
662
|
-
<line num="
|
|
663
|
-
<line num="
|
|
664
|
-
<line num="
|
|
665
|
-
<line num="
|
|
666
|
-
<line num="
|
|
667
|
-
<line num="
|
|
668
|
-
<line num="
|
|
669
|
-
<line num="
|
|
670
|
-
<line num="
|
|
671
|
-
<line num="
|
|
672
|
-
<line num="
|
|
673
|
-
<line num="
|
|
674
|
-
<line num="
|
|
675
|
-
<line num="
|
|
676
|
-
<line num="
|
|
677
|
-
<line num="
|
|
678
|
-
<line num="
|
|
679
|
-
<line num="
|
|
680
|
-
<line num="
|
|
681
|
-
<line num="
|
|
682
|
-
<line num="
|
|
683
|
-
<line num="
|
|
684
|
-
<line num="
|
|
685
|
-
<line num="
|
|
686
|
-
<line num="
|
|
687
|
-
<line num="
|
|
688
|
-
<line num="
|
|
689
|
-
<line num="
|
|
690
|
-
<line num="
|
|
691
|
-
<line num="
|
|
692
|
-
<line num="
|
|
693
|
-
<line num="
|
|
694
|
-
<line num="
|
|
695
|
-
<line num="
|
|
696
|
-
<line num="
|
|
697
|
-
<line num="
|
|
698
|
-
<line num="
|
|
699
|
-
<line num="
|
|
700
|
-
<line num="
|
|
701
|
-
<line num="
|
|
702
|
-
<line num="
|
|
703
|
-
<line num="
|
|
704
|
-
<line num="
|
|
705
|
-
<line num="
|
|
706
|
-
<line num="
|
|
707
|
-
<line num="
|
|
708
|
-
<line num="
|
|
709
|
-
<line num="
|
|
710
|
-
<line num="
|
|
711
|
-
<line num="
|
|
712
|
-
<line num="
|
|
713
|
-
<line num="
|
|
714
|
-
<line num="
|
|
715
|
-
<line num="
|
|
716
|
-
<line num="
|
|
717
|
-
<line num="
|
|
718
|
-
<line num="
|
|
719
|
-
<line num="
|
|
720
|
-
<line num="
|
|
721
|
-
<line num="
|
|
722
|
-
<line num="
|
|
723
|
-
<line num="
|
|
724
|
-
<line num="
|
|
725
|
-
<line num="
|
|
726
|
-
<line num="
|
|
727
|
-
<line num="
|
|
728
|
-
<line num="
|
|
729
|
-
<line num="
|
|
730
|
-
<line num="
|
|
731
|
-
<line num="
|
|
732
|
-
<line num="
|
|
733
|
-
<line num="
|
|
734
|
-
<line num="
|
|
735
|
-
<line num="
|
|
736
|
-
<line num="
|
|
737
|
-
<line num="
|
|
738
|
-
<line num="
|
|
739
|
-
<line num="
|
|
740
|
-
<line num="
|
|
741
|
-
<line num="
|
|
742
|
-
<line num="
|
|
743
|
-
<line num="
|
|
744
|
-
<line num="
|
|
745
|
-
<line num="
|
|
746
|
-
<line num="
|
|
747
|
-
<line num="
|
|
748
|
-
<line num="
|
|
749
|
-
<line num="
|
|
750
|
-
<line num="
|
|
751
|
-
<line num="
|
|
752
|
-
<line num="
|
|
753
|
-
<line num="
|
|
754
|
-
<line num="
|
|
755
|
-
<line num="
|
|
756
|
-
<line num="
|
|
757
|
-
<line num="
|
|
758
|
-
<line num="
|
|
759
|
-
<line num="
|
|
760
|
-
<line num="
|
|
761
|
-
<line num="
|
|
762
|
-
<line num="
|
|
763
|
-
<line num="
|
|
764
|
-
<line num="
|
|
765
|
-
<line num="
|
|
766
|
-
<line num="
|
|
767
|
-
<line num="
|
|
768
|
-
<line num="
|
|
769
|
-
<line num="
|
|
770
|
-
<line num="
|
|
771
|
-
<line num="
|
|
772
|
-
<line num="
|
|
773
|
-
<line num="
|
|
774
|
-
<line num="
|
|
775
|
-
<line num="
|
|
776
|
-
<line num="
|
|
777
|
-
<line num="
|
|
778
|
-
<line num="
|
|
779
|
-
<line num="
|
|
780
|
-
<line num="
|
|
781
|
-
<line num="
|
|
782
|
-
<line num="
|
|
783
|
-
<line num="
|
|
784
|
-
<line num="
|
|
785
|
-
<line num="
|
|
786
|
-
<line num="
|
|
787
|
-
<line num="
|
|
788
|
-
<line num="
|
|
789
|
-
<line num="
|
|
790
|
-
<line num="
|
|
791
|
-
<line num="
|
|
792
|
-
<line num="
|
|
793
|
-
<line num="
|
|
794
|
-
<line num="
|
|
795
|
-
<line num="
|
|
796
|
-
<line num="
|
|
797
|
-
<line num="
|
|
798
|
-
<line num="
|
|
799
|
-
<line num="
|
|
800
|
-
<line num="
|
|
801
|
-
<line num="
|
|
802
|
-
<line num="
|
|
803
|
-
<line num="
|
|
804
|
-
<line num="
|
|
805
|
-
<line num="
|
|
806
|
-
<line num="
|
|
807
|
-
<line num="
|
|
808
|
-
<line num="
|
|
809
|
-
<line num="
|
|
810
|
-
<line num="
|
|
811
|
-
<line num="
|
|
812
|
-
<line num="
|
|
813
|
-
<line num="
|
|
814
|
-
<line num="
|
|
815
|
-
<line num="
|
|
816
|
-
<line num="
|
|
817
|
-
<line num="
|
|
818
|
-
<line num="
|
|
819
|
-
<line num="
|
|
820
|
-
<line num="
|
|
821
|
-
<line num="
|
|
822
|
-
<line num="
|
|
823
|
-
<line num="
|
|
824
|
-
<line num="
|
|
825
|
-
<line num="
|
|
826
|
-
<line num="
|
|
827
|
-
<line num="
|
|
828
|
-
<line num="
|
|
829
|
-
<line num="
|
|
830
|
-
<line num="
|
|
831
|
-
<line num="
|
|
832
|
-
<line num="
|
|
833
|
-
<line num="
|
|
834
|
-
<line num="
|
|
835
|
-
<line num="
|
|
836
|
-
<line num="
|
|
837
|
-
<line num="
|
|
838
|
-
<line num="
|
|
839
|
-
<line num="
|
|
840
|
-
<line num="
|
|
841
|
-
<line num="
|
|
842
|
-
<line num="
|
|
843
|
-
<line num="
|
|
844
|
-
<line num="
|
|
845
|
-
<line num="
|
|
846
|
-
<line num="
|
|
847
|
-
<line num="
|
|
848
|
-
<line num="
|
|
849
|
-
<line num="
|
|
850
|
-
<line num="
|
|
851
|
-
<line num="
|
|
852
|
-
<line num="
|
|
853
|
-
<line num="
|
|
854
|
-
<line num="
|
|
855
|
-
<line num="
|
|
856
|
-
<line num="
|
|
857
|
-
<line num="
|
|
858
|
-
<line num="
|
|
859
|
-
<line num="
|
|
860
|
-
<line num="
|
|
861
|
-
<line num="
|
|
862
|
-
<line num="
|
|
863
|
-
<line num="
|
|
864
|
-
<line num="
|
|
865
|
-
<line num="
|
|
866
|
-
<line num="
|
|
867
|
-
<line num="
|
|
868
|
-
<line num="
|
|
869
|
-
<line num="
|
|
870
|
-
<line num="
|
|
871
|
-
<line num="
|
|
872
|
-
<line num="
|
|
873
|
-
<line num="
|
|
874
|
-
<line num="
|
|
875
|
-
<line num="
|
|
876
|
-
<line num="
|
|
877
|
-
<line num="
|
|
878
|
-
<line num="
|
|
879
|
-
<line num="
|
|
880
|
-
<line num="
|
|
881
|
-
<line num="
|
|
882
|
-
<line num="
|
|
883
|
-
<line num="
|
|
884
|
-
<line num="
|
|
885
|
-
<line num="
|
|
886
|
-
<line num="
|
|
887
|
-
<line num="
|
|
888
|
-
<line num="
|
|
889
|
-
<line num="
|
|
890
|
-
<line num="
|
|
891
|
-
<line num="
|
|
892
|
-
<line num="
|
|
893
|
-
<line num="
|
|
894
|
-
<line num="
|
|
895
|
-
<line num="
|
|
896
|
-
<line num="
|
|
635
|
+
<line num="110" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
636
|
+
<line num="111" count="14" type="stmt"/>
|
|
637
|
+
<line num="112" count="14" type="stmt"/>
|
|
638
|
+
<line num="113" count="14" type="stmt"/>
|
|
639
|
+
<line num="114" count="14" type="stmt"/>
|
|
640
|
+
<line num="115" count="14" type="stmt"/>
|
|
641
|
+
<line num="116" count="14" type="stmt"/>
|
|
642
|
+
<line num="117" count="14" type="stmt"/>
|
|
643
|
+
<line num="118" count="14" type="stmt"/>
|
|
644
|
+
<line num="119" count="14" type="cond" truecount="0" falsecount="1"/>
|
|
645
|
+
<line num="120" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
646
|
+
<line num="121" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
647
|
+
<line num="122" count="14" type="cond" truecount="0" falsecount="1"/>
|
|
648
|
+
<line num="125" count="14" type="stmt"/>
|
|
649
|
+
<line num="126" count="14" type="stmt"/>
|
|
650
|
+
<line num="127" count="14" type="stmt"/>
|
|
651
|
+
<line num="128" count="14" type="stmt"/>
|
|
652
|
+
<line num="129" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
653
|
+
<line num="130" count="18" type="stmt"/>
|
|
654
|
+
<line num="131" count="18" type="stmt"/>
|
|
655
|
+
<line num="132" count="18" type="stmt"/>
|
|
656
|
+
<line num="133" count="18" type="stmt"/>
|
|
657
|
+
<line num="134" count="18" type="stmt"/>
|
|
658
|
+
<line num="135" count="18" type="stmt"/>
|
|
659
|
+
<line num="136" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
660
|
+
<line num="137" count="4" type="stmt"/>
|
|
661
|
+
<line num="138" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
662
|
+
<line num="140" count="14" type="stmt"/>
|
|
663
|
+
<line num="141" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
664
|
+
<line num="142" count="3" type="stmt"/>
|
|
665
|
+
<line num="143" count="3" type="stmt"/>
|
|
666
|
+
<line num="144" count="3" type="stmt"/>
|
|
667
|
+
<line num="145" count="3" type="stmt"/>
|
|
668
|
+
<line num="146" count="3" type="stmt"/>
|
|
669
|
+
<line num="147" count="3" type="stmt"/>
|
|
670
|
+
<line num="148" count="18" type="stmt"/>
|
|
671
|
+
<line num="151" count="14" type="stmt"/>
|
|
672
|
+
<line num="153" count="14" type="stmt"/>
|
|
673
|
+
<line num="156" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
674
|
+
<line num="157" count="4" type="stmt"/>
|
|
675
|
+
<line num="158" count="4" type="stmt"/>
|
|
676
|
+
<line num="159" count="4" type="stmt"/>
|
|
677
|
+
<line num="160" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
678
|
+
<line num="161" count="10" type="stmt"/>
|
|
679
|
+
<line num="162" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
680
|
+
<line num="163" count="38" type="stmt"/>
|
|
681
|
+
<line num="164" count="38" type="stmt"/>
|
|
682
|
+
<line num="165" count="38" type="stmt"/>
|
|
683
|
+
<line num="166" count="38" type="stmt"/>
|
|
684
|
+
<line num="167" count="38" type="cond" truecount="0" falsecount="1"/>
|
|
685
|
+
<line num="168" count="0" type="stmt"/>
|
|
686
|
+
<line num="169" count="0" type="stmt"/>
|
|
687
|
+
<line num="170" count="0" type="stmt"/>
|
|
688
|
+
<line num="171" count="0" type="stmt"/>
|
|
689
|
+
<line num="172" count="38" type="stmt"/>
|
|
690
|
+
<line num="173" count="38" type="stmt"/>
|
|
691
|
+
<line num="174" count="38" type="stmt"/>
|
|
692
|
+
<line num="175" count="38" type="stmt"/>
|
|
693
|
+
<line num="176" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
694
|
+
<line num="177" count="8" type="stmt"/>
|
|
695
|
+
<line num="178" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
696
|
+
<line num="179" count="30" type="stmt"/>
|
|
697
|
+
<line num="180" count="30" type="stmt"/>
|
|
698
|
+
<line num="181" count="30" type="stmt"/>
|
|
699
|
+
<line num="182" count="30" type="stmt"/>
|
|
700
|
+
<line num="183" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
701
|
+
<line num="184" count="32" type="stmt"/>
|
|
702
|
+
<line num="185" count="32" type="stmt"/>
|
|
703
|
+
<line num="186" count="32" type="stmt"/>
|
|
704
|
+
<line num="187" count="32" type="stmt"/>
|
|
705
|
+
<line num="188" count="32" type="stmt"/>
|
|
706
|
+
<line num="189" count="32" type="stmt"/>
|
|
707
|
+
<line num="190" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
708
|
+
<line num="191" count="6" type="stmt"/>
|
|
709
|
+
<line num="192" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
710
|
+
<line num="194" count="32" type="cond" truecount="0" falsecount="1"/>
|
|
711
|
+
<line num="195" count="0" type="stmt"/>
|
|
712
|
+
<line num="196" count="0" type="stmt"/>
|
|
713
|
+
<line num="197" count="0" type="stmt"/>
|
|
714
|
+
<line num="198" count="0" type="stmt"/>
|
|
715
|
+
<line num="199" count="0" type="stmt"/>
|
|
716
|
+
<line num="200" count="0" type="stmt"/>
|
|
717
|
+
<line num="201" count="0" type="stmt"/>
|
|
718
|
+
<line num="202" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
719
|
+
<line num="203" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
720
|
+
<line num="204" count="13" type="stmt"/>
|
|
721
|
+
<line num="205" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
722
|
+
<line num="206" count="26" type="stmt"/>
|
|
723
|
+
<line num="207" count="26" type="stmt"/>
|
|
724
|
+
<line num="208" count="26" type="stmt"/>
|
|
725
|
+
<line num="209" count="26" type="stmt"/>
|
|
726
|
+
<line num="210" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
727
|
+
<line num="211" count="30" type="stmt"/>
|
|
728
|
+
<line num="213" count="14" type="stmt"/>
|
|
729
|
+
<line num="214" count="14" type="stmt"/>
|
|
730
|
+
<line num="215" count="14" type="stmt"/>
|
|
731
|
+
<line num="216" count="14" type="stmt"/>
|
|
732
|
+
<line num="217" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
733
|
+
<line num="219" count="13" type="stmt"/>
|
|
734
|
+
<line num="220" count="13" type="stmt"/>
|
|
735
|
+
<line num="221" count="13" type="stmt"/>
|
|
736
|
+
<line num="222" count="13" type="stmt"/>
|
|
737
|
+
<line num="223" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
738
|
+
<line num="224" count="26" type="stmt"/>
|
|
739
|
+
<line num="225" count="26" type="stmt"/>
|
|
740
|
+
<line num="226" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
741
|
+
<line num="227" count="13" type="stmt"/>
|
|
742
|
+
<line num="228" count="13" type="stmt"/>
|
|
743
|
+
<line num="229" count="13" type="stmt"/>
|
|
744
|
+
<line num="230" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
745
|
+
<line num="231" count="6" type="stmt"/>
|
|
746
|
+
<line num="232" count="6" type="stmt"/>
|
|
747
|
+
<line num="233" count="6" type="stmt"/>
|
|
748
|
+
<line num="234" count="6" type="stmt"/>
|
|
749
|
+
<line num="235" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
750
|
+
<line num="236" count="7" type="stmt"/>
|
|
751
|
+
<line num="237" count="7" type="stmt"/>
|
|
752
|
+
<line num="238" count="7" type="stmt"/>
|
|
753
|
+
<line num="239" count="7" type="stmt"/>
|
|
754
|
+
<line num="240" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
755
|
+
<line num="241" count="2" type="stmt"/>
|
|
756
|
+
<line num="242" count="2" type="stmt"/>
|
|
757
|
+
<line num="243" count="2" type="stmt"/>
|
|
758
|
+
<line num="244" count="2" type="stmt"/>
|
|
759
|
+
<line num="245" count="2" type="stmt"/>
|
|
760
|
+
<line num="246" count="2" type="stmt"/>
|
|
761
|
+
<line num="247" count="2" type="stmt"/>
|
|
762
|
+
<line num="248" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
763
|
+
<line num="249" count="5" type="stmt"/>
|
|
764
|
+
<line num="250" count="5" type="stmt"/>
|
|
765
|
+
<line num="251" count="5" type="stmt"/>
|
|
766
|
+
<line num="252" count="5" type="stmt"/>
|
|
767
|
+
<line num="253" count="5" type="stmt"/>
|
|
768
|
+
<line num="254" count="5" type="stmt"/>
|
|
769
|
+
<line num="255" count="5" type="stmt"/>
|
|
770
|
+
<line num="256" count="5" type="stmt"/>
|
|
771
|
+
<line num="257" count="7" type="stmt"/>
|
|
772
|
+
<line num="258" count="26" type="stmt"/>
|
|
773
|
+
<line num="262" count="13" type="stmt"/>
|
|
774
|
+
<line num="263" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
775
|
+
<line num="264" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
776
|
+
<line num="265" count="0" type="stmt"/>
|
|
777
|
+
<line num="266" count="0" type="stmt"/>
|
|
778
|
+
<line num="267" count="0" type="stmt"/>
|
|
779
|
+
<line num="268" count="0" type="stmt"/>
|
|
780
|
+
<line num="269" count="0" type="stmt"/>
|
|
781
|
+
<line num="270" count="0" type="stmt"/>
|
|
782
|
+
<line num="271" count="0" type="stmt"/>
|
|
783
|
+
<line num="272" count="0" type="stmt"/>
|
|
784
|
+
<line num="273" count="4" type="stmt"/>
|
|
785
|
+
<line num="274" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
786
|
+
<line num="275" count="2" type="stmt"/>
|
|
787
|
+
<line num="276" count="2" type="stmt"/>
|
|
788
|
+
<line num="277" count="2" type="stmt"/>
|
|
789
|
+
<line num="278" count="2" type="stmt"/>
|
|
790
|
+
<line num="279" count="2" type="stmt"/>
|
|
791
|
+
<line num="280" count="2" type="stmt"/>
|
|
792
|
+
<line num="281" count="2" type="stmt"/>
|
|
793
|
+
<line num="282" count="4" type="stmt"/>
|
|
794
|
+
<line num="286" count="13" type="stmt"/>
|
|
795
|
+
<line num="287" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
796
|
+
<line num="288" count="2" type="stmt"/>
|
|
797
|
+
<line num="289" count="2" type="stmt"/>
|
|
798
|
+
<line num="290" count="2" type="stmt"/>
|
|
799
|
+
<line num="291" count="2" type="stmt"/>
|
|
800
|
+
<line num="292" count="2" type="stmt"/>
|
|
801
|
+
<line num="293" count="2" type="stmt"/>
|
|
802
|
+
<line num="294" count="2" type="stmt"/>
|
|
803
|
+
<line num="295" count="2" type="stmt"/>
|
|
804
|
+
<line num="296" count="2" type="stmt"/>
|
|
805
|
+
<line num="297" count="2" type="stmt"/>
|
|
806
|
+
<line num="298" count="2" type="stmt"/>
|
|
807
|
+
<line num="299" count="2" type="stmt"/>
|
|
808
|
+
<line num="300" count="2" type="stmt"/>
|
|
809
|
+
<line num="301" count="2" type="stmt"/>
|
|
810
|
+
<line num="305" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
811
|
+
<line num="306" count="9" type="cond" truecount="0" falsecount="1"/>
|
|
812
|
+
<line num="307" count="0" type="stmt"/>
|
|
813
|
+
<line num="308" count="0" type="stmt"/>
|
|
814
|
+
<line num="309" count="0" type="stmt"/>
|
|
815
|
+
<line num="310" count="0" type="stmt"/>
|
|
816
|
+
<line num="311" count="0" type="stmt"/>
|
|
817
|
+
<line num="312" count="0" type="stmt"/>
|
|
818
|
+
<line num="313" count="0" type="stmt"/>
|
|
819
|
+
<line num="314" count="0" type="stmt"/>
|
|
820
|
+
<line num="315" count="9" type="stmt"/>
|
|
821
|
+
<line num="316" count="9" type="stmt"/>
|
|
822
|
+
<line num="317" count="9" type="stmt"/>
|
|
823
|
+
<line num="318" count="9" type="stmt"/>
|
|
824
|
+
<line num="319" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
825
|
+
<line num="320" count="2" type="stmt"/>
|
|
826
|
+
<line num="321" count="2" type="stmt"/>
|
|
827
|
+
<line num="322" count="2" type="stmt"/>
|
|
828
|
+
<line num="323" count="2" type="stmt"/>
|
|
829
|
+
<line num="324" count="2" type="stmt"/>
|
|
830
|
+
<line num="325" count="2" type="stmt"/>
|
|
831
|
+
<line num="326" count="2" type="stmt"/>
|
|
832
|
+
<line num="327" count="2" type="stmt"/>
|
|
833
|
+
<line num="328" count="2" type="stmt"/>
|
|
834
|
+
<line num="329" count="2" type="stmt"/>
|
|
835
|
+
<line num="330" count="2" type="stmt"/>
|
|
836
|
+
<line num="331" count="2" type="stmt"/>
|
|
837
|
+
<line num="332" count="2" type="stmt"/>
|
|
838
|
+
<line num="333" count="2" type="stmt"/>
|
|
839
|
+
<line num="334" count="9" type="stmt"/>
|
|
840
|
+
<line num="335" count="13" type="stmt"/>
|
|
841
|
+
<line num="336" count="14" type="stmt"/>
|
|
842
|
+
<line num="338" count="50" type="cond" truecount="1" falsecount="0"/>
|
|
843
|
+
<line num="339" count="50" type="stmt"/>
|
|
844
|
+
<line num="340" count="50" type="stmt"/>
|
|
845
|
+
<line num="341" count="50" type="stmt"/>
|
|
846
|
+
<line num="342" count="50" type="stmt"/>
|
|
847
|
+
<line num="346" count="50" type="stmt"/>
|
|
848
|
+
<line num="348" count="50" type="stmt"/>
|
|
849
|
+
<line num="349" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
850
|
+
<line num="350" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
851
|
+
<line num="351" count="9" type="stmt"/>
|
|
852
|
+
<line num="352" count="50" type="cond" truecount="1" falsecount="0"/>
|
|
853
|
+
<line num="353" count="10" type="stmt"/>
|
|
854
|
+
<line num="354" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
855
|
+
<line num="355" count="40" type="stmt"/>
|
|
856
|
+
<line num="356" count="40" type="stmt"/>
|
|
857
|
+
<line num="358" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
858
|
+
<line num="359" count="11" type="stmt"/>
|
|
859
|
+
<line num="360" count="11" type="stmt"/>
|
|
860
|
+
<line num="361" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
861
|
+
<line num="362" count="10" type="stmt"/>
|
|
862
|
+
<line num="363" count="10" type="stmt"/>
|
|
863
|
+
<line num="364" count="10" type="stmt"/>
|
|
864
|
+
<line num="365" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
865
|
+
<line num="366" count="1" type="stmt"/>
|
|
866
|
+
<line num="367" count="1" type="stmt"/>
|
|
867
|
+
<line num="368" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
868
|
+
<line num="369" count="1" type="stmt"/>
|
|
869
|
+
<line num="370" count="1" type="stmt"/>
|
|
870
|
+
<line num="371" count="1" type="stmt"/>
|
|
871
|
+
<line num="372" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
872
|
+
<line num="373" count="1" type="stmt"/>
|
|
873
|
+
<line num="374" count="1" type="stmt"/>
|
|
874
|
+
<line num="375" count="1" type="stmt"/>
|
|
875
|
+
<line num="376" count="1" type="stmt"/>
|
|
876
|
+
<line num="378" count="1" type="stmt"/>
|
|
877
|
+
<line num="379" count="11" type="stmt"/>
|
|
878
|
+
<line num="410" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
879
|
+
<line num="411" count="69" type="stmt"/>
|
|
880
|
+
<line num="412" count="69" type="stmt"/>
|
|
881
|
+
<line num="413" count="69" type="stmt"/>
|
|
882
|
+
<line num="414" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
883
|
+
<line num="415" count="22" type="stmt"/>
|
|
884
|
+
<line num="416" count="69" type="cond" truecount="2" falsecount="0"/>
|
|
885
|
+
<line num="417" count="16" type="stmt"/>
|
|
886
|
+
<line num="418" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
887
|
+
<line num="422" count="69" type="cond" truecount="0" falsecount="1"/>
|
|
888
|
+
<line num="423" count="0" type="stmt"/>
|
|
889
|
+
<line num="424" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
890
|
+
<line num="426" count="69" type="cond" truecount="3" falsecount="0"/>
|
|
891
|
+
<line num="427" count="69" type="cond" truecount="3" falsecount="0"/>
|
|
892
|
+
<line num="429" count="69" type="stmt"/>
|
|
893
|
+
<line num="430" count="69" type="stmt"/>
|
|
894
|
+
<line num="431" count="69" type="cond" truecount="1" falsecount="1"/>
|
|
897
895
|
<line num="434" count="0" type="stmt"/>
|
|
898
|
-
<line num="435" count="
|
|
899
|
-
<line num="
|
|
900
|
-
<line num="
|
|
901
|
-
<line num="
|
|
902
|
-
<line num="
|
|
903
|
-
<line num="
|
|
904
|
-
<line num="
|
|
905
|
-
<line num="
|
|
906
|
-
<line num="
|
|
907
|
-
<line num="
|
|
908
|
-
<line num="
|
|
909
|
-
<line num="
|
|
910
|
-
<line num="
|
|
911
|
-
<line num="451" count="2" type="stmt"/>
|
|
896
|
+
<line num="435" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
897
|
+
<line num="437" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
898
|
+
<line num="438" count="3" type="stmt"/>
|
|
899
|
+
<line num="442" count="3" type="stmt"/>
|
|
900
|
+
<line num="443" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
901
|
+
<line num="444" count="3" type="stmt"/>
|
|
902
|
+
<line num="445" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
903
|
+
<line num="446" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
904
|
+
<line num="447" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
905
|
+
<line num="448" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
906
|
+
<line num="449" count="3" type="stmt"/>
|
|
907
|
+
<line num="450" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
908
|
+
<line num="451" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
912
909
|
<line num="452" count="2" type="stmt"/>
|
|
913
|
-
<line num="453" count="2" type="
|
|
914
|
-
<line num="454" count="
|
|
915
|
-
<line num="455" count="
|
|
916
|
-
<line num="456" count="
|
|
917
|
-
<line num="457" count="
|
|
918
|
-
<line num="
|
|
919
|
-
<line num="
|
|
920
|
-
<line num="
|
|
921
|
-
<line num="
|
|
922
|
-
<line num="
|
|
923
|
-
<line num="
|
|
924
|
-
<line num="467" count="
|
|
925
|
-
<line num="468" count="
|
|
926
|
-
<line num="469" count="
|
|
927
|
-
<line num="470" count="
|
|
928
|
-
<line num="471" count="
|
|
929
|
-
<line num="472" count="
|
|
930
|
-
<line num="473" count="
|
|
931
|
-
<line num="474" count="
|
|
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="
|
|
941
|
-
<line num="
|
|
942
|
-
<line num="
|
|
943
|
-
<line num="
|
|
944
|
-
<line num="
|
|
945
|
-
<line num="
|
|
946
|
-
<line num="
|
|
947
|
-
<line num="
|
|
948
|
-
<line num="
|
|
949
|
-
<line num="
|
|
950
|
-
<line num="
|
|
951
|
-
<line num="
|
|
952
|
-
<line num="
|
|
953
|
-
<line num="
|
|
954
|
-
<line num="
|
|
955
|
-
<line num="
|
|
956
|
-
<line num="
|
|
957
|
-
<line num="
|
|
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="
|
|
968
|
-
<line num="
|
|
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="
|
|
988
|
-
<line num="
|
|
989
|
-
<line num="
|
|
990
|
-
<line num="
|
|
991
|
-
<line num="
|
|
992
|
-
<line num="
|
|
993
|
-
<line num="
|
|
994
|
-
<line num="
|
|
995
|
-
<line num="
|
|
996
|
-
<line num="
|
|
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="
|
|
1007
|
-
<line num="
|
|
1008
|
-
<line num="
|
|
1009
|
-
<line num="
|
|
1010
|
-
<line num="
|
|
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="
|
|
1030
|
-
<line num="
|
|
1031
|
-
<line num="
|
|
1032
|
-
<line num="
|
|
1033
|
-
<line num="
|
|
1034
|
-
<line num="
|
|
1035
|
-
<line num="
|
|
1036
|
-
<line num="
|
|
1037
|
-
<line num="
|
|
1038
|
-
<line num="
|
|
1039
|
-
<line num="
|
|
1040
|
-
<line num="
|
|
1041
|
-
<line num="
|
|
1042
|
-
<line num="
|
|
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"/>
|
|
1115
|
-
<line num="763" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
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"/>
|
|
1146
|
-
<line num="818" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1147
|
-
<line num="819" count="1" type="stmt"/>
|
|
1148
|
-
<line num="820" count="1" type="stmt"/>
|
|
1149
|
-
<line num="821" count="4" type="stmt"/>
|
|
1150
|
-
<line num="822" count="4" type="stmt"/>
|
|
1151
|
-
<line num="823" count="4" type="stmt"/>
|
|
1152
|
-
<line num="824" count="4" type="stmt"/>
|
|
1153
|
-
<line num="825" count="4" type="stmt"/>
|
|
910
|
+
<line num="453" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
911
|
+
<line num="454" count="1" type="stmt"/>
|
|
912
|
+
<line num="455" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
913
|
+
<line num="456" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
914
|
+
<line num="457" count="3" type="stmt"/>
|
|
915
|
+
<line num="461" count="3" type="stmt"/>
|
|
916
|
+
<line num="462" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
917
|
+
<line num="463" count="3" type="stmt"/>
|
|
918
|
+
<line num="464" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
919
|
+
<line num="465" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
920
|
+
<line num="466" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
921
|
+
<line num="467" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
922
|
+
<line num="468" count="3" type="stmt"/>
|
|
923
|
+
<line num="469" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
924
|
+
<line num="470" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
925
|
+
<line num="471" count="2" type="stmt"/>
|
|
926
|
+
<line num="472" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
927
|
+
<line num="473" count="1" type="stmt"/>
|
|
928
|
+
<line num="474" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
929
|
+
<line num="476" count="25" type="stmt"/>
|
|
930
|
+
<line num="477" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
931
|
+
<line num="478" count="35" type="stmt"/>
|
|
932
|
+
<line num="479" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
933
|
+
<line num="480" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
934
|
+
<line num="482" count="25" type="stmt"/>
|
|
935
|
+
<line num="483" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
936
|
+
<line num="484" count="10" type="stmt"/>
|
|
937
|
+
<line num="485" count="10" type="stmt"/>
|
|
938
|
+
<line num="486" count="10" type="stmt"/>
|
|
939
|
+
<line num="487" count="10" type="stmt"/>
|
|
940
|
+
<line num="488" count="10" type="stmt"/>
|
|
941
|
+
<line num="489" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
942
|
+
<line num="490" count="4" type="stmt"/>
|
|
943
|
+
<line num="491" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
944
|
+
<line num="492" count="6" type="stmt"/>
|
|
945
|
+
<line num="493" count="6" type="stmt"/>
|
|
946
|
+
<line num="494" count="6" type="stmt"/>
|
|
947
|
+
<line num="495" count="6" type="stmt"/>
|
|
948
|
+
<line num="496" count="6" type="stmt"/>
|
|
949
|
+
<line num="497" count="6" type="stmt"/>
|
|
950
|
+
<line num="498" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
951
|
+
<line num="499" count="0" type="stmt"/>
|
|
952
|
+
<line num="500" count="0" type="stmt"/>
|
|
953
|
+
<line num="501" count="25" type="stmt"/>
|
|
954
|
+
<line num="502" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
955
|
+
<line num="503" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
956
|
+
<line num="504" count="17" type="stmt"/>
|
|
957
|
+
<line num="505" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
958
|
+
<line num="506" count="8" type="stmt"/>
|
|
959
|
+
<line num="507" count="8" type="stmt"/>
|
|
960
|
+
<line num="545" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
961
|
+
<line num="546" count="346" type="cond" truecount="1" falsecount="0"/>
|
|
962
|
+
<line num="547" count="27" type="stmt"/>
|
|
963
|
+
<line num="548" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
964
|
+
<line num="550" count="319" type="stmt"/>
|
|
965
|
+
<line num="551" count="319" type="stmt"/>
|
|
966
|
+
<line num="552" count="346" type="cond" truecount="1" falsecount="0"/>
|
|
967
|
+
<line num="553" count="16" type="stmt"/>
|
|
968
|
+
<line num="554" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
969
|
+
<line num="557" count="11" type="stmt"/>
|
|
970
|
+
<line num="558" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
971
|
+
<line num="560" count="346" type="cond" truecount="3" falsecount="0"/>
|
|
972
|
+
<line num="561" count="346" type="cond" truecount="3" falsecount="0"/>
|
|
973
|
+
<line num="563" count="346" type="stmt"/>
|
|
974
|
+
<line num="564" count="346" type="stmt"/>
|
|
975
|
+
<line num="565" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
976
|
+
<line num="566" count="11" type="stmt"/>
|
|
977
|
+
<line num="567" count="11" type="stmt"/>
|
|
978
|
+
<line num="569" count="11" type="stmt"/>
|
|
979
|
+
<line num="570" count="346" type="cond" truecount="2" falsecount="0"/>
|
|
980
|
+
<line num="571" count="22" type="stmt"/>
|
|
981
|
+
<line num="572" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
982
|
+
<line num="573" count="24" type="stmt"/>
|
|
983
|
+
<line num="575" count="24" type="stmt"/>
|
|
984
|
+
<line num="576" count="22" type="stmt"/>
|
|
985
|
+
<line num="577" count="281" type="cond" truecount="2" falsecount="0"/>
|
|
986
|
+
<line num="580" count="18" type="stmt"/>
|
|
987
|
+
<line num="581" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
988
|
+
<line num="583" count="241" type="cond" truecount="1" falsecount="0"/>
|
|
989
|
+
<line num="584" count="253" type="stmt"/>
|
|
990
|
+
<line num="585" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
991
|
+
<line num="586" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
992
|
+
<line num="588" count="81" type="stmt"/>
|
|
993
|
+
<line num="589" count="81" type="cond" truecount="1" falsecount="0"/>
|
|
994
|
+
<line num="591" count="172" type="stmt"/>
|
|
995
|
+
<line num="592" count="172" type="stmt"/>
|
|
996
|
+
<line num="593" count="172" type="stmt"/>
|
|
997
|
+
<line num="594" count="172" type="stmt"/>
|
|
998
|
+
<line num="595" count="172" type="stmt"/>
|
|
999
|
+
<line num="597" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1000
|
+
<line num="600" count="146" type="stmt"/>
|
|
1001
|
+
<line num="601" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
1002
|
+
<line num="603" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1003
|
+
<line num="606" count="20" type="stmt"/>
|
|
1004
|
+
<line num="607" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1005
|
+
<line num="610" count="6" type="stmt"/>
|
|
1006
|
+
<line num="611" count="6" type="stmt"/>
|
|
1007
|
+
<line num="612" count="26" type="stmt"/>
|
|
1008
|
+
<line num="613" count="241" type="stmt"/>
|
|
1009
|
+
<line num="614" count="241" type="stmt"/>
|
|
1010
|
+
<line num="619" count="700" type="cond" truecount="1" falsecount="0"/>
|
|
1011
|
+
<line num="620" count="700" type="stmt"/>
|
|
1012
|
+
<line num="621" count="700" type="stmt"/>
|
|
1013
|
+
<line num="626" count="646" type="cond" truecount="1" falsecount="0"/>
|
|
1014
|
+
<line num="627" count="646" type="stmt"/>
|
|
1015
|
+
<line num="628" count="646" type="stmt"/>
|
|
1016
|
+
<line num="630" count="344" type="cond" truecount="1" falsecount="0"/>
|
|
1017
|
+
<line num="631" count="344" type="stmt"/>
|
|
1018
|
+
<line num="632" count="344" type="stmt"/>
|
|
1019
|
+
<line num="635" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1020
|
+
<line num="636" count="487" type="stmt"/>
|
|
1021
|
+
<line num="637" count="487" type="stmt"/>
|
|
1022
|
+
<line num="641" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1023
|
+
<line num="642" count="4" type="stmt"/>
|
|
1024
|
+
<line num="643" count="4" type="stmt"/>
|
|
1025
|
+
<line num="644" count="4" type="stmt"/>
|
|
1026
|
+
<line num="645" count="4" type="stmt"/>
|
|
1027
|
+
<line num="646" count="4" type="stmt"/>
|
|
1028
|
+
<line num="647" count="4" type="stmt"/>
|
|
1029
|
+
<line num="653" count="4" type="stmt"/>
|
|
1030
|
+
<line num="654" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1031
|
+
<line num="655" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1032
|
+
<line num="656" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1033
|
+
<line num="657" count="1" type="stmt"/>
|
|
1034
|
+
<line num="658" count="1" type="stmt"/>
|
|
1035
|
+
<line num="659" count="4" type="stmt"/>
|
|
1036
|
+
<line num="660" count="4" type="stmt"/>
|
|
1037
|
+
<line num="661" count="4" type="stmt"/>
|
|
1038
|
+
<line num="662" count="4" type="stmt"/>
|
|
1039
|
+
<line num="663" count="4" type="stmt"/>
|
|
1154
1040
|
</file>
|
|
1155
1041
|
<file name="nestedWorkspaces.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/nestedWorkspaces.ts">
|
|
1156
1042
|
<metrics statements="46" coveredstatements="45" conditionals="12" coveredconditionals="11" methods="1" coveredmethods="1"/>
|
|
@@ -1202,126 +1088,126 @@
|
|
|
1202
1088
|
<line num="69" count="1" type="stmt"/>
|
|
1203
1089
|
</file>
|
|
1204
1090
|
<file name="oncePerPackage.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/oncePerPackage.ts">
|
|
1205
|
-
<metrics statements="
|
|
1091
|
+
<metrics statements="24" coveredstatements="24" conditionals="4" coveredconditionals="4" methods="1" coveredmethods="1"/>
|
|
1206
1092
|
<line num="1" count="1" type="stmt"/>
|
|
1207
|
-
<line num="
|
|
1093
|
+
<line num="2" count="1" type="stmt"/>
|
|
1208
1094
|
<line num="4" count="1" type="stmt"/>
|
|
1209
1095
|
<line num="5" count="1" type="stmt"/>
|
|
1210
1096
|
<line num="6" count="1" type="stmt"/>
|
|
1211
1097
|
<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
1098
|
<line num="11" count="1" type="stmt"/>
|
|
1216
|
-
<line num="12" count="1" type="stmt"/>
|
|
1217
1099
|
<line num="13" count="1" type="stmt"/>
|
|
1218
1100
|
<line num="14" count="1" type="stmt"/>
|
|
1219
|
-
<line num="
|
|
1220
|
-
<line num="
|
|
1221
|
-
<line num="
|
|
1222
|
-
<line num="
|
|
1223
|
-
<line num="
|
|
1224
|
-
<line num="
|
|
1225
|
-
<line num="
|
|
1226
|
-
<line num="
|
|
1227
|
-
<line num="
|
|
1228
|
-
<line num="
|
|
1229
|
-
<line num="
|
|
1230
|
-
<line num="
|
|
1231
|
-
<line num="
|
|
1232
|
-
<line num="28" count="1" type="stmt"/>
|
|
1233
|
-
<line num="29" count="1" type="stmt"/>
|
|
1234
|
-
<line num="30" count="1" type="stmt"/>
|
|
1101
|
+
<line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1102
|
+
<line num="17" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1103
|
+
<line num="18" count="6" type="stmt"/>
|
|
1104
|
+
<line num="20" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1105
|
+
<line num="21" count="2" type="stmt"/>
|
|
1106
|
+
<line num="22" count="2" type="stmt"/>
|
|
1107
|
+
<line num="23" count="2" type="stmt"/>
|
|
1108
|
+
<line num="24" count="2" type="stmt"/>
|
|
1109
|
+
<line num="25" count="2" type="stmt"/>
|
|
1110
|
+
<line num="26" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1111
|
+
<line num="27" count="4" type="stmt"/>
|
|
1112
|
+
<line num="28" count="4" type="stmt"/>
|
|
1113
|
+
<line num="29" count="6" type="stmt"/>
|
|
1235
1114
|
<line num="31" count="1" type="stmt"/>
|
|
1236
1115
|
<line num="32" count="1" type="stmt"/>
|
|
1237
1116
|
</file>
|
|
1238
1117
|
<file name="packageEntry.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/packageEntry.ts">
|
|
1239
|
-
<metrics statements="
|
|
1118
|
+
<metrics statements="89" coveredstatements="89" conditionals="22" coveredconditionals="22" methods="7" coveredmethods="7"/>
|
|
1240
1119
|
<line num="1" count="1" type="stmt"/>
|
|
1241
1120
|
<line num="8" count="1" type="stmt"/>
|
|
1242
1121
|
<line num="9" count="1" type="stmt"/>
|
|
1243
1122
|
<line num="10" count="1" type="stmt"/>
|
|
1244
1123
|
<line num="11" count="1" type="stmt"/>
|
|
1124
|
+
<line num="12" count="1" type="stmt"/>
|
|
1245
1125
|
<line num="13" count="1" type="stmt"/>
|
|
1246
|
-
<line num="14" count="1" type="stmt"/>
|
|
1247
1126
|
<line num="15" count="1" type="stmt"/>
|
|
1248
1127
|
<line num="16" count="1" type="stmt"/>
|
|
1249
1128
|
<line num="17" count="1" type="stmt"/>
|
|
1250
1129
|
<line num="18" count="1" type="stmt"/>
|
|
1251
|
-
<line num="19" count="1" type="
|
|
1130
|
+
<line num="19" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
1252
1131
|
<line num="20" count="1" type="stmt"/>
|
|
1253
1132
|
<line num="21" count="1" type="stmt"/>
|
|
1254
|
-
<line num="22" count="1" type="stmt"/>
|
|
1255
|
-
<line num="23" count="1" type="stmt"/>
|
|
1256
|
-
<line num="24" count="1" type="stmt"/>
|
|
1257
1133
|
<line num="25" count="1" type="stmt"/>
|
|
1258
1134
|
<line num="26" count="1" type="stmt"/>
|
|
1259
|
-
<line num="27" count="1" type="
|
|
1260
|
-
<line num="28" count="
|
|
1261
|
-
<line num="
|
|
1262
|
-
<line num="
|
|
1263
|
-
<line num="
|
|
1264
|
-
<line num="
|
|
1265
|
-
<line num="
|
|
1266
|
-
<line num="
|
|
1267
|
-
<line num="
|
|
1268
|
-
<line num="
|
|
1269
|
-
<line num="40" count="
|
|
1270
|
-
<line num="41" count="
|
|
1271
|
-
<line num="42" count="
|
|
1272
|
-
<line num="43" count="
|
|
1273
|
-
<line num="
|
|
1274
|
-
<line num="
|
|
1275
|
-
<line num="
|
|
1276
|
-
<line num="
|
|
1277
|
-
<line num="
|
|
1278
|
-
<line num="
|
|
1279
|
-
<line num="
|
|
1280
|
-
<line num="
|
|
1281
|
-
<line num="
|
|
1282
|
-
<line num="
|
|
1283
|
-
<line num="
|
|
1284
|
-
<line num="
|
|
1285
|
-
<line num="
|
|
1286
|
-
<line num="
|
|
1287
|
-
<line num="
|
|
1135
|
+
<line num="27" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1136
|
+
<line num="28" count="18" type="stmt"/>
|
|
1137
|
+
<line num="30" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1138
|
+
<line num="31" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1139
|
+
<line num="32" count="18" type="stmt"/>
|
|
1140
|
+
<line num="34" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1141
|
+
<line num="36" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1142
|
+
<line num="37" count="6" type="stmt"/>
|
|
1143
|
+
<line num="38" count="6" type="stmt"/>
|
|
1144
|
+
<line num="39" count="6" type="stmt"/>
|
|
1145
|
+
<line num="40" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1146
|
+
<line num="41" count="6" type="stmt"/>
|
|
1147
|
+
<line num="42" count="6" type="stmt"/>
|
|
1148
|
+
<line num="43" count="6" type="stmt"/>
|
|
1149
|
+
<line num="44" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1150
|
+
<line num="45" count="6" type="stmt"/>
|
|
1151
|
+
<line num="46" count="6" type="stmt"/>
|
|
1152
|
+
<line num="47" count="6" type="stmt"/>
|
|
1153
|
+
<line num="48" count="6" type="stmt"/>
|
|
1154
|
+
<line num="49" count="6" type="stmt"/>
|
|
1155
|
+
<line num="50" count="6" type="stmt"/>
|
|
1156
|
+
<line num="51" count="6" type="stmt"/>
|
|
1157
|
+
<line num="52" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1158
|
+
<line num="54" count="10" type="stmt"/>
|
|
1159
|
+
<line num="55" count="10" type="stmt"/>
|
|
1160
|
+
<line num="56" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1161
|
+
<line num="57" count="10" type="stmt"/>
|
|
1162
|
+
<line num="58" count="10" type="stmt"/>
|
|
1163
|
+
<line num="59" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
1164
|
+
<line num="60" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1288
1165
|
<line num="61" count="6" type="stmt"/>
|
|
1289
|
-
<line num="62" count="
|
|
1290
|
-
<line num="63" count="
|
|
1291
|
-
<line num="64" count="
|
|
1292
|
-
<line num="65" count="
|
|
1293
|
-
<line num="66" count="
|
|
1294
|
-
<line num="67" count="
|
|
1295
|
-
<line num="68" count="
|
|
1296
|
-
<line num="69" count="
|
|
1297
|
-
<line num="70" count="
|
|
1298
|
-
<line num="71" count="
|
|
1299
|
-
<line num="72" count="
|
|
1300
|
-
<line num="73" count="
|
|
1166
|
+
<line num="62" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1167
|
+
<line num="63" count="8" type="stmt"/>
|
|
1168
|
+
<line num="64" count="8" type="stmt"/>
|
|
1169
|
+
<line num="65" count="8" type="stmt"/>
|
|
1170
|
+
<line num="66" count="8" type="stmt"/>
|
|
1171
|
+
<line num="67" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1172
|
+
<line num="68" count="8" type="stmt"/>
|
|
1173
|
+
<line num="69" count="8" type="stmt"/>
|
|
1174
|
+
<line num="70" count="8" type="stmt"/>
|
|
1175
|
+
<line num="71" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1176
|
+
<line num="72" count="8" type="stmt"/>
|
|
1177
|
+
<line num="73" count="8" type="stmt"/>
|
|
1301
1178
|
<line num="74" count="8" type="stmt"/>
|
|
1302
1179
|
<line num="75" count="8" type="stmt"/>
|
|
1303
|
-
<line num="
|
|
1304
|
-
<line num="
|
|
1305
|
-
<line num="
|
|
1306
|
-
<line num="
|
|
1307
|
-
<line num="
|
|
1308
|
-
<line num="
|
|
1309
|
-
<line num="83" count="
|
|
1310
|
-
<line num="84" count="
|
|
1311
|
-
<line num="85" count="
|
|
1180
|
+
<line num="76" count="8" type="stmt"/>
|
|
1181
|
+
<line num="77" count="8" type="stmt"/>
|
|
1182
|
+
<line num="78" count="8" type="stmt"/>
|
|
1183
|
+
<line num="79" count="10" type="stmt"/>
|
|
1184
|
+
<line num="80" count="18" type="stmt"/>
|
|
1185
|
+
<line num="81" count="16" type="stmt"/>
|
|
1186
|
+
<line num="83" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1187
|
+
<line num="84" count="6" type="stmt"/>
|
|
1188
|
+
<line num="85" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1312
1189
|
<line num="86" count="4" type="stmt"/>
|
|
1313
|
-
<line num="87" count="
|
|
1314
|
-
<line num="88" count="
|
|
1315
|
-
<line num="89" count="
|
|
1316
|
-
<line num="
|
|
1317
|
-
<line num="
|
|
1318
|
-
<line num="
|
|
1319
|
-
<line num="
|
|
1320
|
-
<line num="
|
|
1321
|
-
<line num="
|
|
1190
|
+
<line num="87" count="4" type="stmt"/>
|
|
1191
|
+
<line num="88" count="4" type="stmt"/>
|
|
1192
|
+
<line num="89" count="4" type="stmt"/>
|
|
1193
|
+
<line num="90" count="4" type="stmt"/>
|
|
1194
|
+
<line num="91" count="6" type="stmt"/>
|
|
1195
|
+
<line num="92" count="6" type="stmt"/>
|
|
1196
|
+
<line num="93" count="18" type="stmt"/>
|
|
1197
|
+
<line num="94" count="1" type="stmt"/>
|
|
1198
|
+
<line num="95" count="1" type="stmt"/>
|
|
1199
|
+
<line num="97" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1200
|
+
<line num="98" count="16" type="stmt"/>
|
|
1201
|
+
<line num="99" count="16" type="stmt"/>
|
|
1202
|
+
<line num="101" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1203
|
+
<line num="102" count="8" type="stmt"/>
|
|
1204
|
+
<line num="103" count="8" type="stmt"/>
|
|
1205
|
+
<line num="105" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1206
|
+
<line num="106" count="12" type="stmt"/>
|
|
1207
|
+
<line num="107" count="12" type="stmt"/>
|
|
1322
1208
|
</file>
|
|
1323
1209
|
<file name="packageOrder.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/packageOrder.ts">
|
|
1324
|
-
<metrics statements="
|
|
1210
|
+
<metrics statements="110" coveredstatements="109" conditionals="22" coveredconditionals="21" methods="5" coveredmethods="5"/>
|
|
1325
1211
|
<line num="1" count="1" type="stmt"/>
|
|
1326
1212
|
<line num="9" count="1" type="stmt"/>
|
|
1327
1213
|
<line num="10" count="1" type="stmt"/>
|
|
@@ -1331,6 +1217,9 @@
|
|
|
1331
1217
|
<line num="16" count="1" type="stmt"/>
|
|
1332
1218
|
<line num="17" count="1" type="stmt"/>
|
|
1333
1219
|
<line num="18" count="1" type="stmt"/>
|
|
1220
|
+
<line num="19" count="1" type="stmt"/>
|
|
1221
|
+
<line num="20" count="1" type="stmt"/>
|
|
1222
|
+
<line num="21" count="1" type="stmt"/>
|
|
1334
1223
|
<line num="22" count="1" type="stmt"/>
|
|
1335
1224
|
<line num="23" count="1" type="stmt"/>
|
|
1336
1225
|
<line num="24" count="1" type="stmt"/>
|
|
@@ -1338,9 +1227,6 @@
|
|
|
1338
1227
|
<line num="26" count="1" type="stmt"/>
|
|
1339
1228
|
<line num="27" count="1" type="stmt"/>
|
|
1340
1229
|
<line num="28" count="1" type="stmt"/>
|
|
1341
|
-
<line num="29" count="1" type="stmt"/>
|
|
1342
|
-
<line num="30" count="1" type="stmt"/>
|
|
1343
|
-
<line num="31" count="1" type="stmt"/>
|
|
1344
1230
|
<line num="32" count="1" type="stmt"/>
|
|
1345
1231
|
<line num="33" count="1" type="stmt"/>
|
|
1346
1232
|
<line num="34" count="1" type="stmt"/>
|
|
@@ -1362,76 +1248,86 @@
|
|
|
1362
1248
|
<line num="50" count="1" type="stmt"/>
|
|
1363
1249
|
<line num="51" count="1" type="stmt"/>
|
|
1364
1250
|
<line num="52" count="1" type="stmt"/>
|
|
1251
|
+
<line num="53" count="1" type="stmt"/>
|
|
1365
1252
|
<line num="54" count="1" type="stmt"/>
|
|
1366
1253
|
<line num="55" count="1" type="stmt"/>
|
|
1367
|
-
<line num="56" count="1" type="
|
|
1368
|
-
<line num="57" count="
|
|
1369
|
-
<line num="58" count="
|
|
1370
|
-
<line num="
|
|
1371
|
-
<line num="
|
|
1372
|
-
<line num="
|
|
1373
|
-
<line num="
|
|
1374
|
-
<line num="
|
|
1375
|
-
<line num="
|
|
1254
|
+
<line num="56" count="1" type="stmt"/>
|
|
1255
|
+
<line num="57" count="1" type="stmt"/>
|
|
1256
|
+
<line num="58" count="1" type="stmt"/>
|
|
1257
|
+
<line num="59" count="1" type="stmt"/>
|
|
1258
|
+
<line num="60" count="1" type="stmt"/>
|
|
1259
|
+
<line num="61" count="1" type="stmt"/>
|
|
1260
|
+
<line num="62" count="1" type="stmt"/>
|
|
1261
|
+
<line num="64" count="1" type="stmt"/>
|
|
1262
|
+
<line num="65" count="1" type="stmt"/>
|
|
1263
|
+
<line num="66" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1264
|
+
<line num="67" count="8" type="stmt"/>
|
|
1376
1265
|
<line num="68" count="8" type="stmt"/>
|
|
1377
|
-
<line num="
|
|
1378
|
-
<line num="71" count="
|
|
1379
|
-
<line num="72" count="
|
|
1380
|
-
<line num="
|
|
1381
|
-
<line num="
|
|
1382
|
-
<line num="
|
|
1383
|
-
<line num="
|
|
1384
|
-
<line num="
|
|
1385
|
-
<line num="
|
|
1386
|
-
<line num="81" count="28" type="stmt"/>
|
|
1266
|
+
<line num="70" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
1267
|
+
<line num="71" count="0" type="stmt"/>
|
|
1268
|
+
<line num="72" count="8" type="stmt"/>
|
|
1269
|
+
<line num="74" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1270
|
+
<line num="75" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1271
|
+
<line num="76" count="6" type="stmt"/>
|
|
1272
|
+
<line num="78" count="8" type="stmt"/>
|
|
1273
|
+
<line num="79" count="8" type="stmt"/>
|
|
1274
|
+
<line num="81" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1387
1275
|
<line num="82" count="6" type="stmt"/>
|
|
1276
|
+
<line num="83" count="6" type="stmt"/>
|
|
1388
1277
|
<line num="84" count="6" type="stmt"/>
|
|
1389
1278
|
<line num="85" count="6" type="stmt"/>
|
|
1390
|
-
<line num="86" count="6" type="
|
|
1391
|
-
<line num="
|
|
1392
|
-
<line num="
|
|
1393
|
-
<line num="
|
|
1394
|
-
<line num="
|
|
1395
|
-
<line num="
|
|
1396
|
-
<line num="93" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1397
|
-
<line num="94" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1279
|
+
<line num="86" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1280
|
+
<line num="88" count="6" type="stmt"/>
|
|
1281
|
+
<line num="90" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1282
|
+
<line num="91" count="28" type="stmt"/>
|
|
1283
|
+
<line num="92" count="6" type="stmt"/>
|
|
1284
|
+
<line num="94" count="6" type="stmt"/>
|
|
1398
1285
|
<line num="95" count="6" type="stmt"/>
|
|
1399
1286
|
<line num="96" count="6" type="stmt"/>
|
|
1400
|
-
<line num="97" count="
|
|
1401
|
-
<line num="
|
|
1402
|
-
<line num="
|
|
1403
|
-
<line num="
|
|
1404
|
-
<line num="
|
|
1405
|
-
<line num="
|
|
1406
|
-
<line num="
|
|
1407
|
-
<line num="
|
|
1408
|
-
<line num="
|
|
1409
|
-
<line num="
|
|
1410
|
-
<line num="
|
|
1411
|
-
<line num="
|
|
1412
|
-
<line num="
|
|
1413
|
-
<line num="
|
|
1414
|
-
<line num="
|
|
1415
|
-
<line num="
|
|
1416
|
-
<line num="
|
|
1417
|
-
<line num="
|
|
1418
|
-
<line num="
|
|
1419
|
-
<line num="
|
|
1420
|
-
<line num="
|
|
1421
|
-
<line num="
|
|
1422
|
-
<line num="127" count="
|
|
1423
|
-
<line num="128" count="
|
|
1424
|
-
<line num="129" count="
|
|
1287
|
+
<line num="97" count="6" type="stmt"/>
|
|
1288
|
+
<line num="98" count="8" type="stmt"/>
|
|
1289
|
+
<line num="99" count="1" type="stmt"/>
|
|
1290
|
+
<line num="100" count="1" type="stmt"/>
|
|
1291
|
+
<line num="102" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1292
|
+
<line num="103" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1293
|
+
<line num="104" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1294
|
+
<line num="105" count="6" type="stmt"/>
|
|
1295
|
+
<line num="106" count="6" type="stmt"/>
|
|
1296
|
+
<line num="107" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1297
|
+
<line num="109" count="2" type="stmt"/>
|
|
1298
|
+
<line num="110" count="2" type="stmt"/>
|
|
1299
|
+
<line num="112" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1300
|
+
<line num="113" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1301
|
+
<line num="114" count="44" type="stmt"/>
|
|
1302
|
+
<line num="115" count="44" type="stmt"/>
|
|
1303
|
+
<line num="118" count="44" type="cond" truecount="2" falsecount="0"/>
|
|
1304
|
+
<line num="119" count="6" type="stmt"/>
|
|
1305
|
+
<line num="120" count="44" type="cond" truecount="3" falsecount="0"/>
|
|
1306
|
+
<line num="121" count="2" type="stmt"/>
|
|
1307
|
+
<line num="122" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1308
|
+
<line num="125" count="36" type="stmt"/>
|
|
1309
|
+
<line num="127" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1310
|
+
<line num="128" count="32" type="stmt"/>
|
|
1311
|
+
<line num="129" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1312
|
+
<line num="130" count="4" type="stmt"/>
|
|
1313
|
+
<line num="131" count="4" type="stmt"/>
|
|
1314
|
+
<line num="132" count="44" type="stmt"/>
|
|
1315
|
+
<line num="133" count="6" type="stmt"/>
|
|
1316
|
+
<line num="135" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1317
|
+
<line num="136" count="8" type="stmt"/>
|
|
1318
|
+
<line num="137" count="8" type="stmt"/>
|
|
1319
|
+
<line num="138" count="8" type="stmt"/>
|
|
1320
|
+
<line num="139" count="8" type="stmt"/>
|
|
1425
1321
|
</file>
|
|
1426
1322
|
<file name="packageScript.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/packageScript.ts">
|
|
1427
|
-
<metrics statements="
|
|
1323
|
+
<metrics statements="143" coveredstatements="143" conditionals="40" coveredconditionals="40" methods="4" coveredmethods="4"/>
|
|
1428
1324
|
<line num="1" count="1" type="stmt"/>
|
|
1429
1325
|
<line num="8" count="1" type="stmt"/>
|
|
1430
1326
|
<line num="9" count="1" type="stmt"/>
|
|
1431
1327
|
<line num="10" count="1" type="stmt"/>
|
|
1432
1328
|
<line num="11" count="1" type="stmt"/>
|
|
1329
|
+
<line num="12" count="1" type="stmt"/>
|
|
1433
1330
|
<line num="13" count="1" type="stmt"/>
|
|
1434
|
-
<line num="14" count="1" type="stmt"/>
|
|
1435
1331
|
<line num="15" count="1" type="stmt"/>
|
|
1436
1332
|
<line num="16" count="1" type="stmt"/>
|
|
1437
1333
|
<line num="17" count="1" type="stmt"/>
|
|
@@ -1441,182 +1337,143 @@
|
|
|
1441
1337
|
<line num="21" count="1" type="stmt"/>
|
|
1442
1338
|
<line num="22" count="1" type="stmt"/>
|
|
1443
1339
|
<line num="23" count="1" type="stmt"/>
|
|
1340
|
+
<line num="24" count="1" type="stmt"/>
|
|
1341
|
+
<line num="25" count="1" type="stmt"/>
|
|
1342
|
+
<line num="26" count="1" type="stmt"/>
|
|
1444
1343
|
<line num="27" count="1" type="stmt"/>
|
|
1344
|
+
<line num="28" count="1" type="stmt"/>
|
|
1445
1345
|
<line num="29" count="1" type="stmt"/>
|
|
1446
1346
|
<line num="30" count="1" type="stmt"/>
|
|
1447
|
-
<line num="31" count="1" type="
|
|
1448
|
-
<line num="32" count="
|
|
1449
|
-
<line num="33" count="
|
|
1450
|
-
<line num="34" count="
|
|
1451
|
-
<line num="35" count="
|
|
1452
|
-
<line num="36" count="
|
|
1453
|
-
<line num="
|
|
1454
|
-
<line num="
|
|
1455
|
-
<line num="
|
|
1456
|
-
<line num="
|
|
1457
|
-
<line num="
|
|
1458
|
-
<line num="
|
|
1459
|
-
<line num="
|
|
1460
|
-
<line num="
|
|
1461
|
-
<line num="
|
|
1462
|
-
<line num="
|
|
1463
|
-
<line num="
|
|
1464
|
-
<line num="
|
|
1465
|
-
<line num="
|
|
1466
|
-
<line num="
|
|
1467
|
-
<line num="
|
|
1468
|
-
<line num="
|
|
1469
|
-
<line num="
|
|
1470
|
-
<line num="
|
|
1471
|
-
<line num="
|
|
1472
|
-
<line num="
|
|
1473
|
-
<line num="
|
|
1474
|
-
<line num="
|
|
1475
|
-
<line num="
|
|
1476
|
-
<line num="
|
|
1477
|
-
<line num="
|
|
1478
|
-
<line num="
|
|
1479
|
-
<line num="
|
|
1480
|
-
<line num="
|
|
1481
|
-
<line num="
|
|
1482
|
-
<line num="67" count="6" type="stmt"/>
|
|
1483
|
-
<line num="68" count="8" type="stmt"/>
|
|
1484
|
-
<line num="69" count="8" type="stmt"/>
|
|
1347
|
+
<line num="31" count="1" type="stmt"/>
|
|
1348
|
+
<line num="32" count="1" type="stmt"/>
|
|
1349
|
+
<line num="33" count="1" type="stmt"/>
|
|
1350
|
+
<line num="34" count="1" type="stmt"/>
|
|
1351
|
+
<line num="35" count="1" type="stmt"/>
|
|
1352
|
+
<line num="36" count="1" type="stmt"/>
|
|
1353
|
+
<line num="40" count="1" type="stmt"/>
|
|
1354
|
+
<line num="42" count="1" type="stmt"/>
|
|
1355
|
+
<line num="43" count="1" type="stmt"/>
|
|
1356
|
+
<line num="44" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1357
|
+
<line num="45" count="48" type="stmt"/>
|
|
1358
|
+
<line num="46" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1359
|
+
<line num="47" count="8" type="stmt"/>
|
|
1360
|
+
<line num="48" count="8" type="stmt"/>
|
|
1361
|
+
<line num="49" count="8" type="stmt"/>
|
|
1362
|
+
<line num="50" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1363
|
+
<line num="51" count="6" type="stmt"/>
|
|
1364
|
+
<line num="52" count="6" type="stmt"/>
|
|
1365
|
+
<line num="53" count="6" type="stmt"/>
|
|
1366
|
+
<line num="54" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1367
|
+
<line num="55" count="6" type="stmt"/>
|
|
1368
|
+
<line num="56" count="6" type="stmt"/>
|
|
1369
|
+
<line num="57" count="6" type="stmt"/>
|
|
1370
|
+
<line num="58" count="6" type="stmt"/>
|
|
1371
|
+
<line num="59" count="6" type="stmt"/>
|
|
1372
|
+
<line num="60" count="8" type="stmt"/>
|
|
1373
|
+
<line num="61" count="8" type="stmt"/>
|
|
1374
|
+
<line num="62" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1375
|
+
<line num="63" count="48" type="stmt"/>
|
|
1376
|
+
<line num="64" count="48" type="stmt"/>
|
|
1377
|
+
<line num="65" count="48" type="stmt"/>
|
|
1378
|
+
<line num="66" count="48" type="stmt"/>
|
|
1379
|
+
<line num="67" count="48" type="stmt"/>
|
|
1380
|
+
<line num="68" count="48" type="stmt"/>
|
|
1381
|
+
<line num="70" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1485
1382
|
<line num="71" count="12" type="stmt"/>
|
|
1486
|
-
<line num="
|
|
1487
|
-
<line num="
|
|
1488
|
-
<line num="75" count="10" type="
|
|
1489
|
-
<line num="76" count="
|
|
1383
|
+
<line num="72" count="12" type="stmt"/>
|
|
1384
|
+
<line num="73" count="48" type="cond" truecount="2" falsecount="0"/>
|
|
1385
|
+
<line num="75" count="10" type="stmt"/>
|
|
1386
|
+
<line num="76" count="10" type="stmt"/>
|
|
1490
1387
|
<line num="77" count="10" type="stmt"/>
|
|
1491
|
-
<line num="
|
|
1492
|
-
<line num="
|
|
1493
|
-
<line num="
|
|
1494
|
-
<line num="
|
|
1495
|
-
<line num="
|
|
1496
|
-
<line num="
|
|
1497
|
-
<line num="
|
|
1498
|
-
<line num="
|
|
1499
|
-
<line num="
|
|
1500
|
-
<line num="
|
|
1501
|
-
<line num="
|
|
1502
|
-
<line num="
|
|
1503
|
-
<line num="
|
|
1504
|
-
<line num="
|
|
1505
|
-
<line num="
|
|
1506
|
-
<line num="94" count="
|
|
1507
|
-
<line num="
|
|
1508
|
-
<line num="
|
|
1509
|
-
<line num="
|
|
1510
|
-
<line num="
|
|
1511
|
-
<line num="
|
|
1512
|
-
<line num="
|
|
1513
|
-
<line num="
|
|
1514
|
-
<line num="
|
|
1515
|
-
<line num="
|
|
1516
|
-
<line num="
|
|
1517
|
-
<line num="
|
|
1518
|
-
<line num="
|
|
1519
|
-
<line num="
|
|
1520
|
-
<line num="
|
|
1521
|
-
<line num="
|
|
1522
|
-
<line num="
|
|
1523
|
-
<line num="
|
|
1524
|
-
<line num="
|
|
1525
|
-
<line num="
|
|
1526
|
-
<line num="
|
|
1527
|
-
<line num="
|
|
1388
|
+
<line num="78" count="36" type="cond" truecount="1" falsecount="0"/>
|
|
1389
|
+
<line num="79" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1390
|
+
<line num="80" count="56" type="cond" truecount="1" falsecount="0"/>
|
|
1391
|
+
<line num="81" count="10" type="stmt"/>
|
|
1392
|
+
<line num="82" count="56" type="cond" truecount="2" falsecount="0"/>
|
|
1393
|
+
<line num="83" count="10" type="stmt"/>
|
|
1394
|
+
<line num="84" count="10" type="stmt"/>
|
|
1395
|
+
<line num="85" count="56" type="stmt"/>
|
|
1396
|
+
<line num="86" count="56" type="stmt"/>
|
|
1397
|
+
<line num="87" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1398
|
+
<line num="88" count="22" type="stmt"/>
|
|
1399
|
+
<line num="89" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1400
|
+
<line num="90" count="22" type="stmt"/>
|
|
1401
|
+
<line num="91" count="26" type="stmt"/>
|
|
1402
|
+
<line num="92" count="26" type="stmt"/>
|
|
1403
|
+
<line num="94" count="48" type="stmt"/>
|
|
1404
|
+
<line num="97" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1405
|
+
<line num="98" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1406
|
+
<line num="100" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1407
|
+
<line num="101" count="6" type="stmt"/>
|
|
1408
|
+
<line num="102" count="6" type="stmt"/>
|
|
1409
|
+
<line num="103" count="6" type="stmt"/>
|
|
1410
|
+
<line num="104" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1411
|
+
<line num="105" count="6" type="stmt"/>
|
|
1412
|
+
<line num="106" count="6" type="stmt"/>
|
|
1413
|
+
<line num="107" count="6" type="stmt"/>
|
|
1414
|
+
<line num="108" count="6" type="stmt"/>
|
|
1415
|
+
<line num="109" count="6" type="stmt"/>
|
|
1416
|
+
<line num="111" count="6" type="stmt"/>
|
|
1417
|
+
<line num="112" count="6" type="stmt"/>
|
|
1418
|
+
<line num="113" count="6" type="stmt"/>
|
|
1419
|
+
<line num="114" count="6" type="stmt"/>
|
|
1420
|
+
<line num="115" count="6" type="stmt"/>
|
|
1421
|
+
<line num="116" count="6" type="stmt"/>
|
|
1422
|
+
<line num="118" count="10" type="stmt"/>
|
|
1423
|
+
<line num="119" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1424
|
+
<line num="121" count="38" type="stmt"/>
|
|
1425
|
+
<line num="122" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
1426
|
+
<line num="123" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
1427
|
+
<line num="124" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1428
|
+
<line num="125" count="32" type="stmt"/>
|
|
1429
|
+
<line num="127" count="32" type="stmt"/>
|
|
1430
|
+
<line num="128" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
1431
|
+
<line num="129" count="30" type="cond" truecount="2" falsecount="0"/>
|
|
1432
|
+
<line num="130" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
1433
|
+
<line num="131" count="26" type="stmt"/>
|
|
1434
|
+
<line num="132" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1435
|
+
<line num="133" count="24" type="stmt"/>
|
|
1436
|
+
<line num="134" count="24" type="stmt"/>
|
|
1437
|
+
<line num="135" count="24" type="stmt"/>
|
|
1438
|
+
<line num="136" count="24" type="cond" truecount="1" falsecount="0"/>
|
|
1439
|
+
<line num="137" count="24" type="cond" truecount="4" falsecount="0"/>
|
|
1440
|
+
<line num="138" count="10" type="stmt"/>
|
|
1441
|
+
<line num="139" count="24" type="cond" truecount="1" falsecount="0"/>
|
|
1442
|
+
<line num="140" count="14" type="stmt"/>
|
|
1443
|
+
<line num="141" count="14" type="stmt"/>
|
|
1444
|
+
<line num="142" count="24" type="stmt"/>
|
|
1445
|
+
<line num="143" count="24" type="stmt"/>
|
|
1446
|
+
<line num="144" count="24" type="stmt"/>
|
|
1447
|
+
<line num="145" count="24" type="stmt"/>
|
|
1448
|
+
<line num="146" count="26" type="stmt"/>
|
|
1449
|
+
<line num="148" count="32" type="stmt"/>
|
|
1450
|
+
<line num="149" count="32" type="cond" truecount="4" falsecount="0"/>
|
|
1451
|
+
<line num="150" count="32" type="stmt"/>
|
|
1452
|
+
<line num="152" count="32" type="stmt"/>
|
|
1453
|
+
<line num="153" count="32" type="stmt"/>
|
|
1454
|
+
<line num="154" count="32" type="stmt"/>
|
|
1455
|
+
<line num="155" count="32" type="stmt"/>
|
|
1456
|
+
<line num="156" count="32" type="stmt"/>
|
|
1457
|
+
<line num="157" count="32" type="stmt"/>
|
|
1458
|
+
<line num="158" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
1459
|
+
<line num="159" count="32" type="stmt"/>
|
|
1460
|
+
<line num="160" count="32" type="stmt"/>
|
|
1461
|
+
<line num="161" count="32" type="stmt"/>
|
|
1462
|
+
<line num="162" count="32" type="stmt"/>
|
|
1463
|
+
<line num="163" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1464
|
+
<line num="164" count="48" type="stmt"/>
|
|
1465
|
+
<line num="165" count="1" type="stmt"/>
|
|
1466
|
+
<line num="166" count="1" type="stmt"/>
|
|
1528
1467
|
</file>
|
|
1529
1468
|
<file name="requireDependency.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/requireDependency.ts">
|
|
1530
|
-
<metrics statements="
|
|
1531
|
-
<line num="1" count="1" type="stmt"/>
|
|
1532
|
-
<line num="9" count="1" type="stmt"/>
|
|
1533
|
-
<line num="10" count="1" type="stmt"/>
|
|
1534
|
-
<line num="11" count="1" type="stmt"/>
|
|
1535
|
-
<line num="12" count="1" type="stmt"/>
|
|
1536
|
-
<line num="14" count="1" type="stmt"/>
|
|
1537
|
-
<line num="15" count="1" type="stmt"/>
|
|
1538
|
-
<line num="16" count="1" type="stmt"/>
|
|
1539
|
-
<line num="17" count="1" type="stmt"/>
|
|
1540
|
-
<line num="18" count="1" type="stmt"/>
|
|
1541
|
-
<line num="19" count="1" type="stmt"/>
|
|
1542
|
-
<line num="23" count="1" type="stmt"/>
|
|
1543
|
-
<line num="24" count="1" type="stmt"/>
|
|
1544
|
-
<line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1545
|
-
<line num="26" count="7" type="stmt"/>
|
|
1546
|
-
<line num="27" count="7" type="stmt"/>
|
|
1547
|
-
<line num="29" count="7" type="stmt"/>
|
|
1548
|
-
<line num="30" count="7" type="stmt"/>
|
|
1549
|
-
<line num="31" count="7" type="stmt"/>
|
|
1550
|
-
<line num="32" count="7" type="stmt"/>
|
|
1551
|
-
<line num="33" count="7" type="stmt"/>
|
|
1552
|
-
<line num="34" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
1553
|
-
<line num="35" count="28" type="stmt"/>
|
|
1554
|
-
<line num="36" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
1555
|
-
<line num="37" count="14" type="stmt"/>
|
|
1556
|
-
<line num="38" count="14" type="stmt"/>
|
|
1557
|
-
<line num="40" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
1558
|
-
<line num="41" count="3" type="stmt"/>
|
|
1559
|
-
<line num="42" count="3" type="stmt"/>
|
|
1560
|
-
<line num="43" count="3" type="stmt"/>
|
|
1561
|
-
<line num="44" count="3" type="stmt"/>
|
|
1562
|
-
<line num="45" count="0" type="stmt"/>
|
|
1563
|
-
<line num="46" count="0" type="stmt"/>
|
|
1564
|
-
<line num="47" count="0" type="stmt"/>
|
|
1565
|
-
<line num="48" count="0" type="stmt"/>
|
|
1566
|
-
<line num="49" count="0" type="stmt"/>
|
|
1567
|
-
<line num="50" count="0" type="stmt"/>
|
|
1568
|
-
<line num="51" count="0" type="stmt"/>
|
|
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"/>
|
|
1576
|
-
<line num="60" count="11" type="stmt"/>
|
|
1577
|
-
<line num="61" count="11" type="stmt"/>
|
|
1578
|
-
<line num="62" count="11" type="stmt"/>
|
|
1579
|
-
<line num="63" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1580
|
-
<line num="64" count="11" type="stmt"/>
|
|
1581
|
-
<line num="65" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
1582
|
-
<line num="66" count="5" type="stmt"/>
|
|
1583
|
-
<line num="67" count="5" type="stmt"/>
|
|
1584
|
-
<line num="68" count="5" type="stmt"/>
|
|
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"/>
|
|
1594
|
-
<line num="78" count="5" type="stmt"/>
|
|
1595
|
-
<line num="79" count="5" 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"/>
|
|
1603
|
-
</file>
|
|
1604
|
-
<file name="standardTsconfig.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/standardTsconfig.ts">
|
|
1605
|
-
<metrics statements="155" coveredstatements="155" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1469
|
+
<metrics statements="118" coveredstatements="118" conditionals="23" coveredconditionals="23" methods="4" coveredmethods="4"/>
|
|
1606
1470
|
<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"/>
|
|
1610
|
-
<line num="6" count="1" type="stmt"/>
|
|
1611
|
-
<line num="7" count="1" type="stmt"/>
|
|
1612
|
-
<line num="8" count="1" type="stmt"/>
|
|
1613
1471
|
<line num="9" count="1" type="stmt"/>
|
|
1614
1472
|
<line num="10" count="1" type="stmt"/>
|
|
1615
1473
|
<line num="11" count="1" type="stmt"/>
|
|
1616
1474
|
<line num="12" count="1" type="stmt"/>
|
|
1617
1475
|
<line num="13" count="1" type="stmt"/>
|
|
1618
1476
|
<line num="14" count="1" type="stmt"/>
|
|
1619
|
-
<line num="15" count="1" type="stmt"/>
|
|
1620
1477
|
<line num="16" count="1" type="stmt"/>
|
|
1621
1478
|
<line num="17" count="1" type="stmt"/>
|
|
1622
1479
|
<line num="18" count="1" type="stmt"/>
|
|
@@ -1647,190 +1504,294 @@
|
|
|
1647
1504
|
<line num="43" count="1" type="stmt"/>
|
|
1648
1505
|
<line num="44" count="1" type="stmt"/>
|
|
1649
1506
|
<line num="45" count="1" type="stmt"/>
|
|
1650
|
-
<line num="46" count="1" type="stmt"/>
|
|
1651
|
-
<line num="47" count="1" type="stmt"/>
|
|
1652
|
-
<line num="48" count="1" type="stmt"/>
|
|
1653
1507
|
<line num="49" count="1" type="stmt"/>
|
|
1654
1508
|
<line num="50" count="1" type="stmt"/>
|
|
1655
|
-
<line num="51" count="1" type="
|
|
1656
|
-
<line num="52" count="
|
|
1657
|
-
<line num="53" count="
|
|
1658
|
-
<line num="
|
|
1659
|
-
<line num="
|
|
1660
|
-
<line num="
|
|
1661
|
-
<line num="
|
|
1662
|
-
<line num="
|
|
1663
|
-
<line num="
|
|
1664
|
-
<line num="
|
|
1665
|
-
<line num="
|
|
1666
|
-
<line num="
|
|
1667
|
-
<line num="
|
|
1668
|
-
<line num="
|
|
1669
|
-
<line num="
|
|
1670
|
-
<line num="
|
|
1671
|
-
<line num="
|
|
1672
|
-
<line num="
|
|
1673
|
-
<line num="
|
|
1674
|
-
<line num="
|
|
1675
|
-
<line num="
|
|
1676
|
-
<line num="
|
|
1677
|
-
<line num="
|
|
1678
|
-
<line num="
|
|
1679
|
-
<line num="
|
|
1680
|
-
<line num="
|
|
1681
|
-
<line num="77" count="1" type="stmt"/>
|
|
1682
|
-
<line num="78" count="1" type="stmt"/>
|
|
1683
|
-
<line num="79" count="1" type="stmt"/>
|
|
1684
|
-
<line num="80" count="1" type="stmt"/>
|
|
1685
|
-
<line num="81" count="1" type="stmt"/>
|
|
1686
|
-
<line num="82" count="1" type="stmt"/>
|
|
1509
|
+
<line num="51" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1510
|
+
<line num="52" count="17" type="stmt"/>
|
|
1511
|
+
<line num="53" count="17" type="stmt"/>
|
|
1512
|
+
<line num="55" count="17" type="stmt"/>
|
|
1513
|
+
<line num="56" count="17" type="stmt"/>
|
|
1514
|
+
<line num="57" count="17" type="stmt"/>
|
|
1515
|
+
<line num="58" count="17" type="stmt"/>
|
|
1516
|
+
<line num="59" count="17" type="stmt"/>
|
|
1517
|
+
<line num="60" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
1518
|
+
<line num="61" count="60" type="stmt"/>
|
|
1519
|
+
<line num="62" count="60" type="cond" truecount="1" falsecount="0"/>
|
|
1520
|
+
<line num="63" count="35" type="stmt"/>
|
|
1521
|
+
<line num="64" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1522
|
+
<line num="67" count="25" type="stmt"/>
|
|
1523
|
+
<line num="68" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
1524
|
+
<line num="69" count="25" type="stmt"/>
|
|
1525
|
+
<line num="70" count="25" type="stmt"/>
|
|
1526
|
+
<line num="71" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
1527
|
+
<line num="72" count="25" type="stmt"/>
|
|
1528
|
+
<line num="75" count="60" type="cond" truecount="1" falsecount="0"/>
|
|
1529
|
+
<line num="77" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
1530
|
+
<line num="78" count="6" type="stmt"/>
|
|
1531
|
+
<line num="79" count="6" type="stmt"/>
|
|
1532
|
+
<line num="80" count="6" type="stmt"/>
|
|
1533
|
+
<line num="81" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1534
|
+
<line num="82" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1687
1535
|
<line num="83" count="1" type="stmt"/>
|
|
1688
1536
|
<line num="84" count="1" type="stmt"/>
|
|
1689
1537
|
<line num="85" count="1" type="stmt"/>
|
|
1690
1538
|
<line num="86" count="1" type="stmt"/>
|
|
1691
|
-
<line num="87" count="
|
|
1692
|
-
<line num="88" count="
|
|
1693
|
-
<line num="89" count="
|
|
1694
|
-
<line num="90" count="
|
|
1695
|
-
<line num="
|
|
1696
|
-
<line num="
|
|
1697
|
-
<line num="
|
|
1698
|
-
<line num="
|
|
1699
|
-
<line num="
|
|
1700
|
-
<line num="
|
|
1701
|
-
<line num="
|
|
1702
|
-
<line num="
|
|
1703
|
-
<line num="
|
|
1704
|
-
<line num="
|
|
1705
|
-
<line num="
|
|
1706
|
-
<line num="
|
|
1707
|
-
<line num="
|
|
1708
|
-
<line num="
|
|
1709
|
-
<line num="
|
|
1710
|
-
<line num="
|
|
1711
|
-
<line num="
|
|
1712
|
-
<line num="
|
|
1713
|
-
<line num="
|
|
1714
|
-
<line num="
|
|
1715
|
-
<line num="
|
|
1716
|
-
<line num="
|
|
1717
|
-
<line num="
|
|
1718
|
-
<line num="
|
|
1719
|
-
<line num="
|
|
1720
|
-
<line num="
|
|
1721
|
-
<line num="
|
|
1722
|
-
<line num="
|
|
1723
|
-
<line num="
|
|
1724
|
-
<line num="
|
|
1725
|
-
<line num="
|
|
1726
|
-
<line num="
|
|
1727
|
-
<line num="
|
|
1728
|
-
<line num="
|
|
1729
|
-
<line num="
|
|
1730
|
-
<line num="
|
|
1731
|
-
<line num="
|
|
1732
|
-
<line num="
|
|
1733
|
-
<line num="
|
|
1734
|
-
<line num="
|
|
1735
|
-
<line num="
|
|
1736
|
-
<line num="
|
|
1737
|
-
<line num="
|
|
1738
|
-
<line num="134" count="1" type="stmt"/>
|
|
1739
|
-
<line num="135" count="1" type="stmt"/>
|
|
1740
|
-
<line num="136" count="1" type="stmt"/>
|
|
1741
|
-
<line num="137" count="1" type="stmt"/>
|
|
1539
|
+
<line num="87" count="6" type="stmt"/>
|
|
1540
|
+
<line num="88" count="6" type="stmt"/>
|
|
1541
|
+
<line num="89" count="7" type="stmt"/>
|
|
1542
|
+
<line num="90" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
1543
|
+
<line num="93" count="60" type="cond" truecount="1" falsecount="0"/>
|
|
1544
|
+
<line num="94" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1545
|
+
<line num="95" count="13" type="stmt"/>
|
|
1546
|
+
<line num="96" count="13" type="stmt"/>
|
|
1547
|
+
<line num="97" count="13" type="stmt"/>
|
|
1548
|
+
<line num="98" count="13" type="stmt"/>
|
|
1549
|
+
<line num="99" count="13" type="stmt"/>
|
|
1550
|
+
<line num="100" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
1551
|
+
<line num="101" count="13" type="stmt"/>
|
|
1552
|
+
<line num="102" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
1553
|
+
<line num="103" count="5" type="stmt"/>
|
|
1554
|
+
<line num="104" count="5" type="stmt"/>
|
|
1555
|
+
<line num="105" count="5" type="stmt"/>
|
|
1556
|
+
<line num="106" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1557
|
+
<line num="107" count="5" type="stmt"/>
|
|
1558
|
+
<line num="108" count="5" type="stmt"/>
|
|
1559
|
+
<line num="109" count="5" type="stmt"/>
|
|
1560
|
+
<line num="110" count="5" type="stmt"/>
|
|
1561
|
+
<line num="111" count="5" type="stmt"/>
|
|
1562
|
+
<line num="112" count="13" type="stmt"/>
|
|
1563
|
+
<line num="113" count="13" type="stmt"/>
|
|
1564
|
+
<line num="114" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1565
|
+
<line num="117" count="60" type="cond" truecount="1" falsecount="0"/>
|
|
1566
|
+
<line num="118" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1567
|
+
<line num="119" count="6" type="stmt"/>
|
|
1568
|
+
<line num="120" count="6" type="stmt"/>
|
|
1569
|
+
<line num="121" count="6" type="stmt"/>
|
|
1570
|
+
<line num="122" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1571
|
+
<line num="123" count="5" type="stmt"/>
|
|
1572
|
+
<line num="124" count="5" type="stmt"/>
|
|
1573
|
+
<line num="125" count="5" type="stmt"/>
|
|
1574
|
+
<line num="126" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1575
|
+
<line num="127" count="5" type="stmt"/>
|
|
1576
|
+
<line num="128" count="5" type="stmt"/>
|
|
1577
|
+
<line num="129" count="5" type="stmt"/>
|
|
1578
|
+
<line num="130" count="5" type="stmt"/>
|
|
1579
|
+
<line num="131" count="5" type="stmt"/>
|
|
1580
|
+
<line num="132" count="5" type="stmt"/>
|
|
1581
|
+
<line num="133" count="6" type="stmt"/>
|
|
1582
|
+
<line num="134" count="6" type="stmt"/>
|
|
1583
|
+
<line num="135" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
1584
|
+
<line num="136" count="17" type="stmt"/>
|
|
1585
|
+
<line num="137" count="17" type="stmt"/>
|
|
1742
1586
|
<line num="138" count="1" type="stmt"/>
|
|
1743
1587
|
<line num="139" count="1" type="stmt"/>
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
<
|
|
1747
|
-
<line num="
|
|
1748
|
-
<line num="
|
|
1749
|
-
<line num="
|
|
1750
|
-
<line num="
|
|
1751
|
-
<line num="
|
|
1752
|
-
<line num="
|
|
1753
|
-
<line num="
|
|
1754
|
-
<line num="
|
|
1755
|
-
<line num="
|
|
1756
|
-
<line num="
|
|
1757
|
-
<line num="
|
|
1758
|
-
<line num="
|
|
1759
|
-
<line num="
|
|
1760
|
-
<line num="
|
|
1588
|
+
</file>
|
|
1589
|
+
<file name="standardTsconfig.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/standardTsconfig.ts">
|
|
1590
|
+
<metrics statements="131" coveredstatements="91" conditionals="18" coveredconditionals="12" methods="6" coveredmethods="6"/>
|
|
1591
|
+
<line num="1" count="1" type="stmt"/>
|
|
1592
|
+
<line num="9" count="1" type="stmt"/>
|
|
1593
|
+
<line num="10" count="1" type="stmt"/>
|
|
1594
|
+
<line num="11" count="1" type="stmt"/>
|
|
1595
|
+
<line num="12" count="1" type="stmt"/>
|
|
1596
|
+
<line num="13" count="1" type="stmt"/>
|
|
1597
|
+
<line num="15" count="1" type="stmt"/>
|
|
1598
|
+
<line num="17" count="1" type="stmt"/>
|
|
1599
|
+
<line num="18" count="1" type="stmt"/>
|
|
1600
|
+
<line num="19" count="1" type="stmt"/>
|
|
1601
|
+
<line num="20" count="1" type="stmt"/>
|
|
1602
|
+
<line num="21" count="1" type="stmt"/>
|
|
1603
|
+
<line num="22" count="1" type="stmt"/>
|
|
1604
|
+
<line num="23" count="1" type="stmt"/>
|
|
1605
|
+
<line num="24" count="1" type="stmt"/>
|
|
1606
|
+
<line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1607
|
+
<line num="26" count="12" type="stmt"/>
|
|
1608
|
+
<line num="27" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1609
|
+
<line num="28" count="4" type="stmt"/>
|
|
1610
|
+
<line num="29" count="4" type="stmt"/>
|
|
1611
|
+
<line num="30" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1612
|
+
<line num="31" count="6" type="stmt"/>
|
|
1613
|
+
<line num="32" count="6" type="stmt"/>
|
|
1614
|
+
<line num="33" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1615
|
+
<line num="34" count="4" type="stmt"/>
|
|
1616
|
+
<line num="35" count="4" type="stmt"/>
|
|
1617
|
+
<line num="37" count="12" type="stmt"/>
|
|
1618
|
+
<line num="38" count="1" type="stmt"/>
|
|
1619
|
+
<line num="39" count="1" type="stmt"/>
|
|
1620
|
+
<line num="40" count="1" type="stmt"/>
|
|
1621
|
+
<line num="45" count="1" type="stmt"/>
|
|
1622
|
+
<line num="46" count="1" type="stmt"/>
|
|
1623
|
+
<line num="47" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1624
|
+
<line num="48" count="4" type="stmt"/>
|
|
1625
|
+
<line num="49" count="4" type="stmt"/>
|
|
1626
|
+
<line num="50" count="4" type="stmt"/>
|
|
1627
|
+
<line num="51" count="4" type="stmt"/>
|
|
1628
|
+
<line num="53" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1629
|
+
<line num="54" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1630
|
+
<line num="55" count="2" type="stmt"/>
|
|
1631
|
+
<line num="57" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1632
|
+
<line num="58" count="0" type="stmt"/>
|
|
1633
|
+
<line num="59" count="0" type="stmt"/>
|
|
1634
|
+
<line num="60" count="0" type="stmt"/>
|
|
1635
|
+
<line num="61" count="0" type="stmt"/>
|
|
1636
|
+
<line num="62" count="0" type="stmt"/>
|
|
1637
|
+
<line num="63" count="0" type="stmt"/>
|
|
1638
|
+
<line num="65" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1639
|
+
<line num="66" count="2" type="stmt"/>
|
|
1640
|
+
<line num="67" count="2" type="stmt"/>
|
|
1641
|
+
<line num="68" count="2" type="stmt"/>
|
|
1642
|
+
<line num="69" count="2" type="stmt"/>
|
|
1643
|
+
<line num="70" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1644
|
+
<line num="71" count="2" type="stmt"/>
|
|
1645
|
+
<line num="72" count="2" type="stmt"/>
|
|
1646
|
+
<line num="73" count="2" type="stmt"/>
|
|
1647
|
+
<line num="74" count="2" type="stmt"/>
|
|
1648
|
+
<line num="75" count="2" type="stmt"/>
|
|
1649
|
+
<line num="76" count="2" type="stmt"/>
|
|
1650
|
+
<line num="77" count="4" type="stmt"/>
|
|
1651
|
+
<line num="78" count="1" type="stmt"/>
|
|
1652
|
+
<line num="79" count="1" type="stmt"/>
|
|
1653
|
+
<line num="81" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1654
|
+
<line num="82" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1655
|
+
<line num="83" count="0" type="stmt"/>
|
|
1656
|
+
<line num="84" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1657
|
+
<line num="85" count="0" type="stmt"/>
|
|
1658
|
+
<line num="86" count="0" type="stmt"/>
|
|
1659
|
+
<line num="87" count="0" type="stmt"/>
|
|
1660
|
+
<line num="88" count="0" type="stmt"/>
|
|
1661
|
+
<line num="89" count="0" type="stmt"/>
|
|
1662
|
+
<line num="91" count="0" type="stmt"/>
|
|
1663
|
+
<line num="92" count="0" type="stmt"/>
|
|
1664
|
+
<line num="93" count="0" type="stmt"/>
|
|
1665
|
+
<line num="94" count="0" type="stmt"/>
|
|
1666
|
+
<line num="95" count="0" type="stmt"/>
|
|
1667
|
+
<line num="96" count="0" type="stmt"/>
|
|
1668
|
+
<line num="97" count="4" type="stmt"/>
|
|
1669
|
+
<line num="98" count="4" type="stmt"/>
|
|
1670
|
+
<line num="99" count="4" type="stmt"/>
|
|
1671
|
+
<line num="100" count="4" type="stmt"/>
|
|
1672
|
+
<line num="101" count="4" type="stmt"/>
|
|
1673
|
+
<line num="102" count="4" type="stmt"/>
|
|
1674
|
+
<line num="103" count="4" type="stmt"/>
|
|
1675
|
+
<line num="104" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1676
|
+
<line num="105" count="0" type="stmt"/>
|
|
1677
|
+
<line num="106" count="0" type="stmt"/>
|
|
1678
|
+
<line num="107" count="4" type="stmt"/>
|
|
1679
|
+
<line num="109" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1680
|
+
<line num="111" count="4" type="stmt"/>
|
|
1681
|
+
<line num="112" count="4" type="stmt"/>
|
|
1682
|
+
<line num="113" count="4" type="stmt"/>
|
|
1683
|
+
<line num="114" count="4" type="stmt"/>
|
|
1684
|
+
<line num="115" count="4" type="stmt"/>
|
|
1685
|
+
<line num="116" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1686
|
+
<line num="117" count="4" type="stmt"/>
|
|
1687
|
+
<line num="118" count="4" type="stmt"/>
|
|
1688
|
+
<line num="119" count="4" type="stmt"/>
|
|
1689
|
+
<line num="120" count="4" type="stmt"/>
|
|
1690
|
+
<line num="122" count="4" type="stmt"/>
|
|
1691
|
+
<line num="123" count="4" type="stmt"/>
|
|
1692
|
+
<line num="125" count="4" type="stmt"/>
|
|
1693
|
+
<line num="126" count="4" type="stmt"/>
|
|
1694
|
+
<line num="127" count="4" type="stmt"/>
|
|
1695
|
+
<line num="128" count="4" type="stmt"/>
|
|
1696
|
+
<line num="129" count="4" type="stmt"/>
|
|
1697
|
+
<line num="130" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1698
|
+
<line num="131" count="0" type="stmt"/>
|
|
1699
|
+
<line num="132" count="0" type="stmt"/>
|
|
1700
|
+
<line num="133" count="0" type="stmt"/>
|
|
1701
|
+
<line num="134" count="0" type="stmt"/>
|
|
1702
|
+
<line num="135" count="0" type="stmt"/>
|
|
1703
|
+
<line num="136" count="0" type="stmt"/>
|
|
1704
|
+
<line num="137" count="0" type="stmt"/>
|
|
1705
|
+
<line num="138" count="0" type="stmt"/>
|
|
1706
|
+
<line num="139" count="0" type="stmt"/>
|
|
1707
|
+
<line num="140" count="0" type="stmt"/>
|
|
1708
|
+
<line num="141" count="0" type="stmt"/>
|
|
1709
|
+
<line num="142" count="0" type="stmt"/>
|
|
1710
|
+
<line num="143" count="0" type="stmt"/>
|
|
1711
|
+
<line num="144" count="0" type="stmt"/>
|
|
1712
|
+
<line num="146" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1713
|
+
<line num="147" count="0" type="stmt"/>
|
|
1714
|
+
<line num="148" count="0" type="stmt"/>
|
|
1715
|
+
<line num="149" count="0" type="stmt"/>
|
|
1716
|
+
<line num="150" count="0" type="stmt"/>
|
|
1717
|
+
<line num="151" count="0" type="stmt"/>
|
|
1718
|
+
<line num="152" count="0" type="stmt"/>
|
|
1719
|
+
<line num="154" count="4" type="stmt"/>
|
|
1720
|
+
<line num="155" count="4" type="stmt"/>
|
|
1721
|
+
<line num="156" count="4" type="stmt"/>
|
|
1761
1722
|
</file>
|
|
1762
1723
|
</package>
|
|
1763
1724
|
<package name="src.util">
|
|
1764
|
-
<metrics statements="
|
|
1725
|
+
<metrics statements="159" coveredstatements="149" conditionals="31" coveredconditionals="26" methods="11" coveredmethods="11"/>
|
|
1765
1726
|
<file name="checkAlpha.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/checkAlpha.ts">
|
|
1766
|
-
<metrics statements="45" coveredstatements="
|
|
1727
|
+
<metrics statements="45" coveredstatements="45" conditionals="10" coveredconditionals="10" methods="4" coveredmethods="4"/>
|
|
1767
1728
|
<line num="1" count="1" type="stmt"/>
|
|
1768
1729
|
<line num="9" count="1" type="stmt"/>
|
|
1769
1730
|
<line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1770
|
-
<line num="12" count="
|
|
1771
|
-
<line num="13" count="
|
|
1772
|
-
<line num="14" count="
|
|
1773
|
-
<line num="15" count="
|
|
1774
|
-
<line num="16" count="
|
|
1775
|
-
<line num="18" count="
|
|
1776
|
-
<line num="20" count="
|
|
1777
|
-
<line num="21" count="
|
|
1778
|
-
<line num="22" count="
|
|
1779
|
-
<line num="24" count="
|
|
1780
|
-
<line num="25" count="
|
|
1781
|
-
<line num="27" count="
|
|
1782
|
-
<line num="28" count="
|
|
1783
|
-
<line num="29" count="
|
|
1784
|
-
<line num="30" count="
|
|
1785
|
-
<line num="31" count="
|
|
1786
|
-
<line num="32" count="
|
|
1787
|
-
<line num="33" count="
|
|
1788
|
-
<line num="35" count="
|
|
1789
|
-
<line num="36" count="
|
|
1790
|
-
<line num="37" count="
|
|
1791
|
-
<line num="39" count="
|
|
1792
|
-
<line num="40" count="
|
|
1793
|
-
<line num="41" count="
|
|
1794
|
-
<line num="42" count="
|
|
1795
|
-
<line num="43" count="
|
|
1796
|
-
<line num="44" count="
|
|
1797
|
-
<line num="45" count="
|
|
1798
|
-
<line num="47" count="
|
|
1799
|
-
<line num="48" count="
|
|
1800
|
-
<line num="49" count="
|
|
1801
|
-
<line num="50" count="
|
|
1802
|
-
<line num="51" count="
|
|
1803
|
-
<line num="52" count="
|
|
1804
|
-
<line num="54" count="
|
|
1805
|
-
<line num="55" count="
|
|
1731
|
+
<line num="12" count="16" type="stmt"/>
|
|
1732
|
+
<line num="13" count="16" type="stmt"/>
|
|
1733
|
+
<line num="14" count="16" type="stmt"/>
|
|
1734
|
+
<line num="15" count="16" type="stmt"/>
|
|
1735
|
+
<line num="16" count="16" type="stmt"/>
|
|
1736
|
+
<line num="18" count="16" type="stmt"/>
|
|
1737
|
+
<line num="20" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1738
|
+
<line num="21" count="8" type="stmt"/>
|
|
1739
|
+
<line num="22" count="8" type="stmt"/>
|
|
1740
|
+
<line num="24" count="8" type="stmt"/>
|
|
1741
|
+
<line num="25" count="8" type="stmt"/>
|
|
1742
|
+
<line num="27" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1743
|
+
<line num="28" count="4" type="stmt"/>
|
|
1744
|
+
<line num="29" count="4" type="stmt"/>
|
|
1745
|
+
<line num="30" count="4" type="stmt"/>
|
|
1746
|
+
<line num="31" count="4" type="stmt"/>
|
|
1747
|
+
<line num="32" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1748
|
+
<line num="33" count="4" type="stmt"/>
|
|
1749
|
+
<line num="35" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1750
|
+
<line num="36" count="12" type="stmt"/>
|
|
1751
|
+
<line num="37" count="4" type="stmt"/>
|
|
1752
|
+
<line num="39" count="4" type="stmt"/>
|
|
1753
|
+
<line num="40" count="4" type="stmt"/>
|
|
1754
|
+
<line num="41" count="4" type="stmt"/>
|
|
1755
|
+
<line num="42" count="4" type="stmt"/>
|
|
1756
|
+
<line num="43" count="4" type="stmt"/>
|
|
1757
|
+
<line num="44" count="4" type="stmt"/>
|
|
1758
|
+
<line num="45" count="16" type="stmt"/>
|
|
1759
|
+
<line num="47" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1760
|
+
<line num="48" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1761
|
+
<line num="49" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1762
|
+
<line num="50" count="4" type="stmt"/>
|
|
1763
|
+
<line num="51" count="4" type="stmt"/>
|
|
1764
|
+
<line num="52" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1765
|
+
<line num="54" count="4" type="stmt"/>
|
|
1766
|
+
<line num="55" count="4" type="stmt"/>
|
|
1806
1767
|
<line num="57" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1807
|
-
<line num="58" count="
|
|
1808
|
-
<line num="59" count="
|
|
1809
|
-
<line num="60" count="
|
|
1810
|
-
<line num="61" count="
|
|
1811
|
-
<line num="62" count="
|
|
1768
|
+
<line num="58" count="8" type="stmt"/>
|
|
1769
|
+
<line num="59" count="8" type="stmt"/>
|
|
1770
|
+
<line num="60" count="8" type="stmt"/>
|
|
1771
|
+
<line num="61" count="8" type="stmt"/>
|
|
1772
|
+
<line num="62" count="8" type="stmt"/>
|
|
1812
1773
|
</file>
|
|
1813
1774
|
<file name="createRuleFactory.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/createRuleFactory.ts">
|
|
1814
1775
|
<metrics statements="19" coveredstatements="19" conditionals="3" coveredconditionals="3" methods="2" coveredmethods="2"/>
|
|
1815
1776
|
<line num="18" count="1" type="stmt"/>
|
|
1816
1777
|
<line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1817
|
-
<line num="20" count="
|
|
1818
|
-
<line num="21" count="
|
|
1819
|
-
<line num="22" count="
|
|
1820
|
-
<line num="23" count="
|
|
1821
|
-
<line num="24" count="
|
|
1822
|
-
<line num="25" count="
|
|
1823
|
-
<line num="26" count="
|
|
1824
|
-
<line num="27" count="
|
|
1825
|
-
<line num="28" count="
|
|
1826
|
-
<line num="30" count="
|
|
1827
|
-
<line num="31" count="
|
|
1828
|
-
<line num="32" count="
|
|
1829
|
-
<line num="33" count="
|
|
1830
|
-
<line num="34" count="
|
|
1831
|
-
<line num="35" count="
|
|
1832
|
-
<line num="36" count="
|
|
1833
|
-
<line num="37" count="
|
|
1778
|
+
<line num="20" count="15" type="stmt"/>
|
|
1779
|
+
<line num="21" count="15" type="stmt"/>
|
|
1780
|
+
<line num="22" count="15" type="stmt"/>
|
|
1781
|
+
<line num="23" count="15" type="stmt"/>
|
|
1782
|
+
<line num="24" count="15" type="stmt"/>
|
|
1783
|
+
<line num="25" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
1784
|
+
<line num="26" count="254" type="stmt"/>
|
|
1785
|
+
<line num="27" count="254" type="stmt"/>
|
|
1786
|
+
<line num="28" count="254" type="stmt"/>
|
|
1787
|
+
<line num="30" count="254" type="cond" truecount="1" falsecount="0"/>
|
|
1788
|
+
<line num="31" count="254" type="stmt"/>
|
|
1789
|
+
<line num="32" count="254" type="stmt"/>
|
|
1790
|
+
<line num="33" count="254" type="stmt"/>
|
|
1791
|
+
<line num="34" count="254" type="stmt"/>
|
|
1792
|
+
<line num="35" count="254" type="stmt"/>
|
|
1793
|
+
<line num="36" count="254" type="stmt"/>
|
|
1794
|
+
<line num="37" count="15" type="stmt"/>
|
|
1834
1795
|
</file>
|
|
1835
1796
|
<file name="makeDirectory.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/makeDirectory.ts">
|
|
1836
1797
|
<metrics statements="14" coveredstatements="14" conditionals="4" coveredconditionals="4" methods="1" coveredmethods="1"/>
|
|
@@ -1838,16 +1799,16 @@
|
|
|
1838
1799
|
<line num="8" count="1" type="stmt"/>
|
|
1839
1800
|
<line num="9" count="1" type="stmt"/>
|
|
1840
1801
|
<line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1841
|
-
<line num="14" count="
|
|
1842
|
-
<line num="15" count="
|
|
1843
|
-
<line num="16" count="
|
|
1844
|
-
<line num="18" count="
|
|
1845
|
-
<line num="19" count="
|
|
1846
|
-
<line num="20" count="
|
|
1847
|
-
<line num="21" count="
|
|
1848
|
-
<line num="22" count="
|
|
1849
|
-
<line num="23" count="
|
|
1850
|
-
<line num="24" count="
|
|
1802
|
+
<line num="14" count="95" type="stmt"/>
|
|
1803
|
+
<line num="15" count="95" type="cond" truecount="1" falsecount="0"/>
|
|
1804
|
+
<line num="16" count="404" type="cond" truecount="1" falsecount="0"/>
|
|
1805
|
+
<line num="18" count="309" type="stmt"/>
|
|
1806
|
+
<line num="19" count="309" type="cond" truecount="1" falsecount="0"/>
|
|
1807
|
+
<line num="20" count="84" type="stmt"/>
|
|
1808
|
+
<line num="21" count="84" type="stmt"/>
|
|
1809
|
+
<line num="22" count="309" type="stmt"/>
|
|
1810
|
+
<line num="23" count="404" type="stmt"/>
|
|
1811
|
+
<line num="24" count="95" type="stmt"/>
|
|
1851
1812
|
</file>
|
|
1852
1813
|
<file name="packageDependencyGraphService.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/packageDependencyGraphService.ts">
|
|
1853
1814
|
<metrics statements="77" coveredstatements="67" conditionals="13" coveredconditionals="8" methods="4" coveredmethods="4"/>
|
|
@@ -1929,6 +1890,13 @@
|
|
|
1929
1890
|
<line num="138" count="1" type="stmt"/>
|
|
1930
1891
|
<line num="139" count="1" type="stmt"/>
|
|
1931
1892
|
</file>
|
|
1893
|
+
<file name="zodSchemas.ts" path="/home/runner/work/monorepolint/monorepolint/packages/rules/src/util/zodSchemas.ts">
|
|
1894
|
+
<metrics statements="4" coveredstatements="4" conditionals="1" coveredconditionals="1" methods="0" coveredmethods="0"/>
|
|
1895
|
+
<line num="1" count="1" type="stmt"/>
|
|
1896
|
+
<line num="8" count="1" type="stmt"/>
|
|
1897
|
+
<line num="9" count="1" type="stmt"/>
|
|
1898
|
+
<line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1899
|
+
</file>
|
|
1932
1900
|
</package>
|
|
1933
1901
|
</project>
|
|
1934
1902
|
</coverage>
|