@tb-dev/eslint-config 8.2.3 → 8.2.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.js +5 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -804,7 +804,7 @@ async function perfectionist(options) {
|
|
|
804
804
|
type: "natural",
|
|
805
805
|
order: "asc",
|
|
806
806
|
ignoreCase: true,
|
|
807
|
-
|
|
807
|
+
fallbackSort: { type: "alphabetical", order: "asc" }
|
|
808
808
|
}
|
|
809
809
|
],
|
|
810
810
|
"perfectionist/sort-enums": "off",
|
|
@@ -813,7 +813,8 @@ async function perfectionist(options) {
|
|
|
813
813
|
{
|
|
814
814
|
type: "line-length",
|
|
815
815
|
order: "asc",
|
|
816
|
-
ignoreCase: true
|
|
816
|
+
ignoreCase: true,
|
|
817
|
+
fallbackSort: { type: "alphabetical", order: "asc" }
|
|
817
818
|
}
|
|
818
819
|
],
|
|
819
820
|
"perfectionist/sort-imports": [
|
|
@@ -822,7 +823,8 @@ async function perfectionist(options) {
|
|
|
822
823
|
type: "line-length",
|
|
823
824
|
order: "asc",
|
|
824
825
|
ignoreCase: true,
|
|
825
|
-
newlinesBetween:
|
|
826
|
+
newlinesBetween: 0,
|
|
827
|
+
fallbackSort: { type: "alphabetical", order: "asc" },
|
|
826
828
|
groups: [["side-effect-style", "side-effect"], "unknown"]
|
|
827
829
|
}
|
|
828
830
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tb-dev/eslint-config",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.4",
|
|
4
4
|
"description": "ESLint config",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"eslint-config"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "^8.53.
|
|
23
|
-
"@typescript-eslint/parser": "^8.53.
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
23
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
24
24
|
"eslint-plugin-perfectionist": "^5.3.1",
|
|
25
25
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
26
26
|
"eslint-plugin-vue": "^10.7.0",
|