@bfra.me/eslint-config 0.4.8 → 0.4.10
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/lib/index.d.ts +7 -0
- package/package.json +9 -9
- package/src/rules.d.ts +7 -0
package/lib/index.d.ts
CHANGED
|
@@ -6726,12 +6726,19 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
6726
6726
|
// ----- perfectionist/sort-objects -----
|
|
6727
6727
|
type PerfectionistSortObjects = []|[{
|
|
6728
6728
|
|
|
6729
|
+
destructuredObjects?: (boolean | {
|
|
6730
|
+
|
|
6731
|
+
groups?: boolean
|
|
6732
|
+
})
|
|
6733
|
+
|
|
6729
6734
|
ignorePattern?: string[]
|
|
6730
6735
|
|
|
6731
6736
|
partitionByComment?: (string[] | boolean | string)
|
|
6732
6737
|
|
|
6733
6738
|
destructureOnly?: boolean
|
|
6734
6739
|
|
|
6740
|
+
objectDeclarations?: boolean
|
|
6741
|
+
|
|
6735
6742
|
styledComponents?: boolean
|
|
6736
6743
|
|
|
6737
6744
|
partitionByNewLine?: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bfra.me/eslint-config",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10",
|
|
4
4
|
"description": "Shared ESLint configuration for bfra.me",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bfra.me",
|
|
@@ -43,19 +43,19 @@
|
|
|
43
43
|
"eslint-plugin-command": "0.2.6",
|
|
44
44
|
"eslint-plugin-import-x": "4.4.3",
|
|
45
45
|
"eslint-plugin-jsdoc": "50.5.0",
|
|
46
|
-
"eslint-plugin-perfectionist": "4.
|
|
46
|
+
"eslint-plugin-perfectionist": "4.1.2",
|
|
47
47
|
"eslint-plugin-unused-imports": "4.1.4",
|
|
48
48
|
"globals": "15.12.0",
|
|
49
49
|
"is-in-ci": "1.0.0",
|
|
50
50
|
"local-pkg": "0.5.1",
|
|
51
|
-
"typescript-eslint": "8.
|
|
51
|
+
"typescript-eslint": "8.16.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@eslint/config-inspector": "0.5.6",
|
|
55
55
|
"@eslint/js": "9.15.0",
|
|
56
56
|
"@types/fs-extra": "11.0.4",
|
|
57
|
-
"@types/node": "22.
|
|
58
|
-
"@typescript-eslint/types": "8.
|
|
57
|
+
"@types/node": "22.10.0",
|
|
58
|
+
"@typescript-eslint/types": "8.16.0",
|
|
59
59
|
"@vitest/eslint-plugin": "1.1.10",
|
|
60
60
|
"eslint": "9.15.0",
|
|
61
61
|
"eslint-plugin-no-only-tests": "3.3.0",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"fast-glob": "3.3.2",
|
|
65
65
|
"fs-extra": "11.2.0",
|
|
66
66
|
"jiti": "2.4.0",
|
|
67
|
-
"prettier": "3.
|
|
67
|
+
"prettier": "3.4.1",
|
|
68
68
|
"tsup": "8.3.5",
|
|
69
69
|
"tsx": "4.19.2",
|
|
70
70
|
"vitest": "2.1.5",
|
|
71
|
-
"@bfra.me/eslint-config": "0.4.
|
|
72
|
-
"@bfra.me/
|
|
73
|
-
"@bfra.me/
|
|
71
|
+
"@bfra.me/eslint-config": "0.4.10",
|
|
72
|
+
"@bfra.me/tsconfig": "0.9.3",
|
|
73
|
+
"@bfra.me/prettier-config": "0.13.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"@vitest/eslint-plugin": "^1.1.4",
|
package/src/rules.d.ts
CHANGED
|
@@ -6720,12 +6720,19 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
6720
6720
|
// ----- perfectionist/sort-objects -----
|
|
6721
6721
|
type PerfectionistSortObjects = []|[{
|
|
6722
6722
|
|
|
6723
|
+
destructuredObjects?: (boolean | {
|
|
6724
|
+
|
|
6725
|
+
groups?: boolean
|
|
6726
|
+
})
|
|
6727
|
+
|
|
6723
6728
|
ignorePattern?: string[]
|
|
6724
6729
|
|
|
6725
6730
|
partitionByComment?: (string[] | boolean | string)
|
|
6726
6731
|
|
|
6727
6732
|
destructureOnly?: boolean
|
|
6728
6733
|
|
|
6734
|
+
objectDeclarations?: boolean
|
|
6735
|
+
|
|
6729
6736
|
styledComponents?: boolean
|
|
6730
6737
|
|
|
6731
6738
|
partitionByNewLine?: boolean
|