@storm-software/eslint 0.148.4 → 0.148.5
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/preset.js +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/preset.js
CHANGED
|
@@ -4737,7 +4737,7 @@ function getStormConfig(options, ...userConfigs) {
|
|
|
4737
4737
|
stylistic: stylisticOptions
|
|
4738
4738
|
}));
|
|
4739
4739
|
}
|
|
4740
|
-
if (options.markdown ??
|
|
4740
|
+
if (options.markdown ?? false) {
|
|
4741
4741
|
configs3.push(markdown({
|
|
4742
4742
|
componentExts,
|
|
4743
4743
|
overrides: getOverrides(options, "markdown")
|
package/dist/types.d.ts
CHANGED
|
@@ -17420,7 +17420,7 @@ interface OptionsConfig extends OptionsComponentExts, OptionsJavascript, Options
|
|
|
17420
17420
|
*
|
|
17421
17421
|
* For formatting Markdown content, enable also `formatters.markdown`.
|
|
17422
17422
|
*
|
|
17423
|
-
* @defaultValue
|
|
17423
|
+
* @defaultValue false
|
|
17424
17424
|
*/
|
|
17425
17425
|
markdown?: boolean | OptionsOverrides;
|
|
17426
17426
|
/**
|
package/package.json
CHANGED