@ntnyq/eslint-config 3.9.0 → 3.9.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/dist/index.cjs +8 -2
- package/dist/index.js +8 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1193,7 +1193,12 @@ var jsdoc = (options = {}) => [
|
|
|
1193
1193
|
definedTags: [
|
|
1194
1194
|
// magic-comments
|
|
1195
1195
|
"vite-ignore",
|
|
1196
|
-
"unocss-include"
|
|
1196
|
+
"unocss-include",
|
|
1197
|
+
// non-standard, but common used
|
|
1198
|
+
"compatibility",
|
|
1199
|
+
"category",
|
|
1200
|
+
"experimental",
|
|
1201
|
+
"internal"
|
|
1197
1202
|
]
|
|
1198
1203
|
}
|
|
1199
1204
|
],
|
|
@@ -2835,7 +2840,8 @@ var perfectionist = (options = {}) => {
|
|
|
2835
2840
|
{
|
|
2836
2841
|
type: "alphabetical",
|
|
2837
2842
|
order: "asc",
|
|
2838
|
-
partitionByComment: true
|
|
2843
|
+
partitionByComment: true,
|
|
2844
|
+
groups: ["unknown", "method", "multiline"]
|
|
2839
2845
|
}
|
|
2840
2846
|
],
|
|
2841
2847
|
"perfectionist/sort-sets": [
|
package/dist/index.js
CHANGED
|
@@ -1045,7 +1045,12 @@ var jsdoc = (options = {}) => [
|
|
|
1045
1045
|
definedTags: [
|
|
1046
1046
|
// magic-comments
|
|
1047
1047
|
"vite-ignore",
|
|
1048
|
-
"unocss-include"
|
|
1048
|
+
"unocss-include",
|
|
1049
|
+
// non-standard, but common used
|
|
1050
|
+
"compatibility",
|
|
1051
|
+
"category",
|
|
1052
|
+
"experimental",
|
|
1053
|
+
"internal"
|
|
1049
1054
|
]
|
|
1050
1055
|
}
|
|
1051
1056
|
],
|
|
@@ -2687,7 +2692,8 @@ var perfectionist = (options = {}) => {
|
|
|
2687
2692
|
{
|
|
2688
2693
|
type: "alphabetical",
|
|
2689
2694
|
order: "asc",
|
|
2690
|
-
partitionByComment: true
|
|
2695
|
+
partitionByComment: true,
|
|
2696
|
+
groups: ["unknown", "method", "multiline"]
|
|
2691
2697
|
}
|
|
2692
2698
|
],
|
|
2693
2699
|
"perfectionist/sort-sets": [
|