@storm-software/eslint 0.141.0 → 0.142.1
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 -3
- package/dist/types.d.ts +2 -2
- package/package.json +2 -2
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
|
@@ -2705,7 +2705,7 @@ __name(perfectionist, "perfectionist");
|
|
|
2705
2705
|
|
|
2706
2706
|
// src/configs/pnpm.ts
|
|
2707
2707
|
async function pnpm(options = {}) {
|
|
2708
|
-
const { overrides = {},
|
|
2708
|
+
const { overrides = {}, skipPackages = [
|
|
2709
2709
|
"typescript"
|
|
2710
2710
|
] } = options;
|
|
2711
2711
|
const [pluginPnpm, parserJsonc] = await Promise.all([
|
|
@@ -2733,7 +2733,7 @@ async function pnpm(options = {}) {
|
|
|
2733
2733
|
"pnpm/enforce-catalog": [
|
|
2734
2734
|
"error",
|
|
2735
2735
|
{
|
|
2736
|
-
|
|
2736
|
+
skipPackages
|
|
2737
2737
|
}
|
|
2738
2738
|
],
|
|
2739
2739
|
"pnpm/valid-catalog": "error",
|
|
@@ -4019,7 +4019,8 @@ function getStormConfig(options, ...userConfigs) {
|
|
|
4019
4019
|
}
|
|
4020
4020
|
if (options.pnpm ?? true) {
|
|
4021
4021
|
configs2.push(pnpm({
|
|
4022
|
-
overrides: getOverrides(options, "pnpm")
|
|
4022
|
+
overrides: getOverrides(options, "pnpm"),
|
|
4023
|
+
skipPackages: typeof options.pnpm !== "boolean" ? options.pnpm?.skipPackages : void 0
|
|
4023
4024
|
}));
|
|
4024
4025
|
}
|
|
4025
4026
|
if (options.jsonc ?? true) {
|
package/dist/types.d.ts
CHANGED
|
@@ -12718,7 +12718,7 @@ type PnpmEnforceCatalog = []|[{
|
|
|
12718
12718
|
|
|
12719
12719
|
reuseExistingCatalog?: boolean
|
|
12720
12720
|
|
|
12721
|
-
|
|
12721
|
+
skipPackages?: string[]
|
|
12722
12722
|
}]
|
|
12723
12723
|
// ----- pnpm/prefer-workspace-settings -----
|
|
12724
12724
|
type PnpmPreferWorkspaceSettings = []|[{
|
|
@@ -16816,7 +16816,7 @@ interface OptionsPnpm extends OptionsOverrides {
|
|
|
16816
16816
|
*
|
|
16817
16817
|
* @defaultValue ["typescript"]
|
|
16818
16818
|
*/
|
|
16819
|
-
|
|
16819
|
+
skipPackages?: string[];
|
|
16820
16820
|
}
|
|
16821
16821
|
interface OptionsCSpell extends OptionsOverrides {
|
|
16822
16822
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.142.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"chalk": "^5.4.1",
|
|
171
171
|
"defu": "6.1.4",
|
|
172
172
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
173
|
-
"eslint-config-prettier": "10.0.1",
|
|
173
|
+
"eslint-config-prettier": "^10.0.1",
|
|
174
174
|
"eslint-flat-config-utils": "^2.0.1",
|
|
175
175
|
"eslint-merge-processors": "^2.0.0",
|
|
176
176
|
"eslint-plugin-import-x": "^4.6.1",
|