@storm-software/eslint 0.131.9 → 0.131.11
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 +4 -4
- 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
|
@@ -2075,9 +2075,6 @@ async function jsonc(options = {}) {
|
|
|
2075
2075
|
},
|
|
2076
2076
|
{
|
|
2077
2077
|
files,
|
|
2078
|
-
ignores: [
|
|
2079
|
-
"**/package.json"
|
|
2080
|
-
],
|
|
2081
2078
|
languageOptions: {
|
|
2082
2079
|
parser: parserJsonc
|
|
2083
2080
|
},
|
|
@@ -3976,7 +3973,10 @@ function getStormConfig(options, ...userConfigs) {
|
|
|
3976
3973
|
configs2.push(jsonc({
|
|
3977
3974
|
overrides: getOverrides(options, "jsonc"),
|
|
3978
3975
|
stylistic: stylisticOptions
|
|
3979
|
-
}),
|
|
3976
|
+
}), sortTsconfig());
|
|
3977
|
+
if (stylisticOptions) {
|
|
3978
|
+
configs2.push(sortPackageJson());
|
|
3979
|
+
}
|
|
3980
3980
|
}
|
|
3981
3981
|
if (options.yaml ?? true) {
|
|
3982
3982
|
configs2.push(yaml({
|
package/package.json
CHANGED