@storm-software/eslint 0.55.0 → 0.56.0
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.mjs +4 -3
- 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.mjs
CHANGED
|
@@ -845,7 +845,7 @@ const config$3 = {
|
|
|
845
845
|
],
|
|
846
846
|
// Enforce defaultProps declarations alphabetical sorting
|
|
847
847
|
// https://github.com/jsx-eslint/eslint-plugin-react/blob/843d71a432baf0f01f598d7cf1eea75ad6896e4b/docs/rules/jsx-sort-default-props.md
|
|
848
|
-
"react/
|
|
848
|
+
"react/sort-default-props": [
|
|
849
849
|
"warn",
|
|
850
850
|
{
|
|
851
851
|
ignoreCase: true
|
|
@@ -12602,9 +12602,10 @@ ${padding}\u26A1 Storm Software ${titleName ? `- ${titleName}` : ""}
|
|
|
12602
12602
|
|
|
12603
12603
|
Website: ${process.env.STORM_HOMEPAGE ?? "https://stormsoftware.com"}
|
|
12604
12604
|
Repository: ${process.env.STORM_REPOSITORY ?? `https://github.com/storm-software${name ? `/${name}` : ""}`}
|
|
12605
|
-
Documentation: https://
|
|
12605
|
+
Documentation: ${process.env.STORM_DOCS ? process.env.STORM_DOCS : `https://stormsoftware.com/${name ? `projects/${name}/` : ""}docs`}
|
|
12606
|
+
|
|
12606
12607
|
Contact: ${process.env.STORM_HOMEPAGE ? process.env.STORM_HOMEPAGE.endsWith("/") ? process.env.STORM_HOMEPAGE.slice(-1) : process.env.STORM_HOMEPAGE : "https://stormsoftware.com"}/contact
|
|
12607
|
-
Licensing: ${process.env.
|
|
12608
|
+
Licensing: ${process.env.STORM_LICENSING ? process.env.STORM_LICENSING : `https://stormsoftware.com/${name ? `projects/${name}/` : ""}licensing`}
|
|
12608
12609
|
|
|
12609
12610
|
-------------------------------------------------------------------`;
|
|
12610
12611
|
};
|
package/package.json
CHANGED