@saasmakers/eslint 0.1.67 → 0.1.68
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/eslint.config.cjs
CHANGED
|
@@ -10775,6 +10775,7 @@ const eslint_config = antfu__default(
|
|
|
10775
10775
|
// Perfectionist
|
|
10776
10776
|
...index.configs["recommended-natural"].rules,
|
|
10777
10777
|
"perfectionist/sort-imports": ["error", { newlinesBetween: 0, type: "natural" }],
|
|
10778
|
+
"perfectionist/sort-modules": ["error", { partitionByComment: true, type: "natural" }],
|
|
10778
10779
|
"perfectionist/sort-objects": ["error", { partitionByComment: true, partitionByNewLine: true, type: "natural" }],
|
|
10779
10780
|
// SaaS Makers
|
|
10780
10781
|
"saasmakers/ts-sort-tests": "error"
|
package/dist/eslint.config.d.cts
CHANGED
|
@@ -58,6 +58,7 @@ var eslint_config = antfu(
|
|
|
58
58
|
// Perfectionist
|
|
59
59
|
..._default.configs["recommended-natural"].rules,
|
|
60
60
|
"perfectionist/sort-imports": ["error", { newlinesBetween: 0, type: "natural" }],
|
|
61
|
+
"perfectionist/sort-modules": ["error", { partitionByComment: true, type: "natural" }],
|
|
61
62
|
"perfectionist/sort-objects": ["error", { partitionByComment: true, partitionByNewLine: true, type: "natural" }],
|
|
62
63
|
// SaaS Makers
|
|
63
64
|
"saasmakers/ts-sort-tests": "error"
|
package/dist/eslint.config.d.mts
CHANGED
|
@@ -58,6 +58,7 @@ var eslint_config = antfu(
|
|
|
58
58
|
// Perfectionist
|
|
59
59
|
..._default.configs["recommended-natural"].rules,
|
|
60
60
|
"perfectionist/sort-imports": ["error", { newlinesBetween: 0, type: "natural" }],
|
|
61
|
+
"perfectionist/sort-modules": ["error", { partitionByComment: true, type: "natural" }],
|
|
61
62
|
"perfectionist/sort-objects": ["error", { partitionByComment: true, partitionByNewLine: true, type: "natural" }],
|
|
62
63
|
// SaaS Makers
|
|
63
64
|
"saasmakers/ts-sort-tests": "error"
|
package/dist/eslint.config.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ var eslint_config = antfu(
|
|
|
58
58
|
// Perfectionist
|
|
59
59
|
..._default.configs["recommended-natural"].rules,
|
|
60
60
|
"perfectionist/sort-imports": ["error", { newlinesBetween: 0, type: "natural" }],
|
|
61
|
+
"perfectionist/sort-modules": ["error", { partitionByComment: true, type: "natural" }],
|
|
61
62
|
"perfectionist/sort-objects": ["error", { partitionByComment: true, partitionByNewLine: true, type: "natural" }],
|
|
62
63
|
// SaaS Makers
|
|
63
64
|
"saasmakers/ts-sort-tests": "error"
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -10752,6 +10752,7 @@ const eslint_config = antfu(
|
|
|
10752
10752
|
// Perfectionist
|
|
10753
10753
|
...index.configs["recommended-natural"].rules,
|
|
10754
10754
|
"perfectionist/sort-imports": ["error", { newlinesBetween: 0, type: "natural" }],
|
|
10755
|
+
"perfectionist/sort-modules": ["error", { partitionByComment: true, type: "natural" }],
|
|
10755
10756
|
"perfectionist/sort-objects": ["error", { partitionByComment: true, partitionByNewLine: true, type: "natural" }],
|
|
10756
10757
|
// SaaS Makers
|
|
10757
10758
|
"saasmakers/ts-sort-tests": "error"
|