@lntvow/eslint-config 9.4.3 → 9.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +13 -0
- package/dist/index.mjs +13 -0
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -572,6 +572,19 @@ async function stylistic(options = {}) {
|
|
|
572
572
|
{ blankLine: "always", prev: "*", next: ["interface", "type"] },
|
|
573
573
|
{ blankLine: "never", prev: "function-overload", next: "function" }
|
|
574
574
|
],
|
|
575
|
+
"style/lines-around-comment": [
|
|
576
|
+
2,
|
|
577
|
+
{
|
|
578
|
+
beforeBlockComment: true,
|
|
579
|
+
allowBlockStart: true,
|
|
580
|
+
allowObjectStart: true,
|
|
581
|
+
allowInterfaceStart: true,
|
|
582
|
+
allowTypeStart: true,
|
|
583
|
+
allowArrayStart: true,
|
|
584
|
+
allowClassStart: true,
|
|
585
|
+
allowModuleStart: true
|
|
586
|
+
}
|
|
587
|
+
],
|
|
575
588
|
// overrides
|
|
576
589
|
...overrides
|
|
577
590
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -492,6 +492,19 @@ async function stylistic(options = {}) {
|
|
|
492
492
|
{ blankLine: "always", prev: "*", next: ["interface", "type"] },
|
|
493
493
|
{ blankLine: "never", prev: "function-overload", next: "function" }
|
|
494
494
|
],
|
|
495
|
+
"style/lines-around-comment": [
|
|
496
|
+
2,
|
|
497
|
+
{
|
|
498
|
+
beforeBlockComment: true,
|
|
499
|
+
allowBlockStart: true,
|
|
500
|
+
allowObjectStart: true,
|
|
501
|
+
allowInterfaceStart: true,
|
|
502
|
+
allowTypeStart: true,
|
|
503
|
+
allowArrayStart: true,
|
|
504
|
+
allowClassStart: true,
|
|
505
|
+
allowModuleStart: true
|
|
506
|
+
}
|
|
507
|
+
],
|
|
495
508
|
// overrides
|
|
496
509
|
...overrides
|
|
497
510
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lntvow/eslint-config",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.4",
|
|
4
4
|
"author": "lntvow",
|
|
5
5
|
"description": "eslint-config",
|
|
6
6
|
"type": "module",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"tslib": "^2.6.2",
|
|
55
55
|
"typescript": "^5.4.5",
|
|
56
56
|
"vue-eslint-parser": "^9.4.2",
|
|
57
|
-
"@lntvow/eslint-plugin": "^9.4.
|
|
57
|
+
"@lntvow/eslint-plugin": "^9.4.4"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"dev": "pnpm build --format esm --watch",
|