@checkdigit/eslint-plugin 4.0.0-beta.0 → 4.0.0-beta.1
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/LICENSE.txt +1 -1
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/file-path-comment.ts.html +2 -3
- package/coverage/lcov-report/index.html +2 -3
- package/coverage/lcov-report/no-card-numbers.ts.html +2 -3
- package/coverage/lcov-report/pure-functions.ts.html +2 -3
- package/package.json +14 -16
package/LICENSE.txt
CHANGED
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1653508680277" clover="3.2.0">
|
|
3
|
+
<project timestamp="1653508680277" name="All files">
|
|
4
4
|
<metrics statements="79" coveredstatements="74" conditionals="38" coveredconditionals="33" methods="16" coveredmethods="16" elements="133" coveredelements="123" complexity="0" loc="79" ncloc="79" packages="1" files="3" classes="3"/>
|
|
5
5
|
<file name="file-path-comment.ts" path="/Users/carl/Development/eslint-plugin/src/file-path-comment.ts">
|
|
6
6
|
<metrics statements="16" coveredstatements="16" conditionals="6" coveredconditionals="6" methods="4" coveredmethods="4"/>
|
|
@@ -333,10 +333,9 @@ export default {
|
|
|
333
333
|
</div><!-- /wrapper -->
|
|
334
334
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
335
335
|
Code coverage generated by
|
|
336
|
-
<a href="https://istanbul.js.org/" target="_blank" rel="noopener">istanbul</a>
|
|
337
|
-
at
|
|
336
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
337
|
+
at Wed May 25 2022 15:58:00 GMT-0400 (Eastern Daylight Time)
|
|
338
338
|
</div>
|
|
339
|
-
</div>
|
|
340
339
|
<script src="prettify.js"></script>
|
|
341
340
|
<script>
|
|
342
341
|
window.onload = function () {
|
|
@@ -130,10 +130,9 @@
|
|
|
130
130
|
</div><!-- /wrapper -->
|
|
131
131
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
132
132
|
Code coverage generated by
|
|
133
|
-
<a href="https://istanbul.js.org/" target="_blank" rel="noopener">istanbul</a>
|
|
134
|
-
at
|
|
133
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
134
|
+
at Wed May 25 2022 15:58:00 GMT-0400 (Eastern Daylight Time)
|
|
135
135
|
</div>
|
|
136
|
-
</div>
|
|
137
136
|
<script src="prettify.js"></script>
|
|
138
137
|
<script>
|
|
139
138
|
window.onload = function () {
|
|
@@ -492,10 +492,9 @@ export default {
|
|
|
492
492
|
</div><!-- /wrapper -->
|
|
493
493
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
494
494
|
Code coverage generated by
|
|
495
|
-
<a href="https://istanbul.js.org/" target="_blank" rel="noopener">istanbul</a>
|
|
496
|
-
at
|
|
495
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
496
|
+
at Wed May 25 2022 15:58:00 GMT-0400 (Eastern Daylight Time)
|
|
497
497
|
</div>
|
|
498
|
-
</div>
|
|
499
498
|
<script src="prettify.js"></script>
|
|
500
499
|
<script>
|
|
501
500
|
window.onload = function () {
|
|
@@ -285,10 +285,9 @@ export default {
|
|
|
285
285
|
</div><!-- /wrapper -->
|
|
286
286
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
287
287
|
Code coverage generated by
|
|
288
|
-
<a href="https://istanbul.js.org/" target="_blank" rel="noopener">istanbul</a>
|
|
289
|
-
at
|
|
288
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
289
|
+
at Wed May 25 2022 15:58:00 GMT-0400 (Eastern Daylight Time)
|
|
290
290
|
</div>
|
|
291
|
-
</div>
|
|
292
291
|
<script src="prettify.js"></script>
|
|
293
292
|
<script>
|
|
294
293
|
window.onload = function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkdigit/eslint-plugin",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.1",
|
|
4
4
|
"description": "Check Digit eslint plugins",
|
|
5
5
|
"prettier": "@checkdigit/prettier-config",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"prettier:fix": "prettier --write 'src/**/*.ts'"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": ">=
|
|
20
|
+
"node": ">=16"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
@@ -35,24 +35,22 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@checkdigit/prettier-config": "^1.0.2",
|
|
37
37
|
"@checkdigit/typescript-config": "^2.2.0",
|
|
38
|
-
"@types/eslint": "^8.2
|
|
39
|
-
"@types/jest": "^27.
|
|
40
|
-
"@types/node": "^17.0.
|
|
41
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
42
|
-
"@typescript-eslint/parser": "^5.
|
|
43
|
-
"eslint": "^8.
|
|
44
|
-
"eslint-config-prettier": "^8.
|
|
38
|
+
"@types/eslint": "^8.4.2",
|
|
39
|
+
"@types/jest": "^27.5.1",
|
|
40
|
+
"@types/node": "^17.0.35",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
42
|
+
"@typescript-eslint/parser": "^5.26.0",
|
|
43
|
+
"eslint": "^8.16.0",
|
|
44
|
+
"eslint-config-prettier": "^8.5.0",
|
|
45
45
|
"eslint-plugin-deprecate": "^0.7.0",
|
|
46
|
-
"eslint-plugin-eslint-plugin": "^4.
|
|
47
|
-
"eslint-plugin-import": "^2.
|
|
46
|
+
"eslint-plugin-eslint-plugin": "^4.2.0",
|
|
47
|
+
"eslint-plugin-import": "^2.26.0",
|
|
48
48
|
"eslint-plugin-no-only-tests": "^2.6.0",
|
|
49
49
|
"eslint-plugin-no-secrets": "^0.8.9",
|
|
50
50
|
"eslint-plugin-node": "^11.1.0",
|
|
51
|
-
"eslint-plugin-sonarjs": "^0.
|
|
52
|
-
"jest": "^
|
|
53
|
-
"
|
|
54
|
-
"ts-jest": "^27.1.2",
|
|
55
|
-
"typescript": "^4.5.4"
|
|
51
|
+
"eslint-plugin-sonarjs": "^0.13.0",
|
|
52
|
+
"jest": "^28.1.0",
|
|
53
|
+
"ts-jest": "^28.0.3"
|
|
56
54
|
},
|
|
57
55
|
"jest": {
|
|
58
56
|
"collectCoverage": true,
|