@theholocron/cli 3.5.3 → 3.5.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/README.md +1 -1
- package/dist/cli.mjs +6 -2
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.mjs
CHANGED
|
@@ -2629,7 +2629,7 @@ function editorconfigContent() {
|
|
|
2629
2629
|
`indent_style = space`,
|
|
2630
2630
|
`indent_size = 2`,
|
|
2631
2631
|
``,
|
|
2632
|
-
`[*.md]`,
|
|
2632
|
+
`[*.{md,mdx}]`,
|
|
2633
2633
|
`trim_trailing_whitespace = false`,
|
|
2634
2634
|
`indent_style = space`,
|
|
2635
2635
|
`indent_size = 2`,
|
|
@@ -2713,7 +2713,11 @@ const EDITORCONFIG_CHECKER_CONFIG = JSON.stringify({
|
|
|
2713
2713
|
IgnoreDefaults: false,
|
|
2714
2714
|
SpacesAfterTabs: false,
|
|
2715
2715
|
NoColor: false,
|
|
2716
|
-
Exclude: [
|
|
2716
|
+
Exclude: [
|
|
2717
|
+
"(^|.+/)LICENSE$",
|
|
2718
|
+
"^public/.*",
|
|
2719
|
+
"\\.mdx$"
|
|
2720
|
+
],
|
|
2717
2721
|
AllowedContentTypes: [],
|
|
2718
2722
|
PassedFiles: [],
|
|
2719
2723
|
Disable: {
|