@storm-software/eslint 0.169.87 → 0.169.89
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 +12 -14
- package/dist/types.d.ts +1 -16
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/preset.js
CHANGED
|
@@ -7208,23 +7208,21 @@ async function pnpm(options = {}) {
|
|
|
7208
7208
|
|
|
7209
7209
|
// src/configs/prettier.ts
|
|
7210
7210
|
init_esm_shims();
|
|
7211
|
-
import
|
|
7211
|
+
import defu6 from "defu";
|
|
7212
|
+
import config2 from "eslint-config-prettier/flat";
|
|
7212
7213
|
async function prettier() {
|
|
7213
7214
|
return [
|
|
7214
|
-
|
|
7215
|
-
|
|
7216
|
-
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7215
|
+
defu6(
|
|
7216
|
+
{
|
|
7217
|
+
name: "storm/prettier",
|
|
7218
|
+
rules: {
|
|
7219
|
+
"prettier/prettier": "error",
|
|
7220
|
+
"arrow-body-style": "off",
|
|
7221
|
+
"prefer-arrow-callback": "off"
|
|
7222
|
+
}
|
|
7220
7223
|
},
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
-
"prettier/prettier": "error",
|
|
7224
|
-
"arrow-body-style": "off",
|
|
7225
|
-
"prefer-arrow-callback": "off"
|
|
7226
|
-
}
|
|
7227
|
-
}
|
|
7224
|
+
config2
|
|
7225
|
+
)
|
|
7228
7226
|
];
|
|
7229
7227
|
}
|
|
7230
7228
|
|
package/dist/types.d.ts
CHANGED
|
@@ -3933,10 +3933,6 @@ Backward pagination arguments
|
|
|
3933
3933
|
* @see https://eslint.org/docs/latest/rules/preserve-caught-error
|
|
3934
3934
|
*/
|
|
3935
3935
|
'preserve-caught-error'?: Linter.RuleEntry<PreserveCaughtError>
|
|
3936
|
-
/**
|
|
3937
|
-
* @see https://github.com/prettier/eslint-plugin-prettier#options
|
|
3938
|
-
*/
|
|
3939
|
-
'prettier/prettier'?: Linter.RuleEntry<PrettierPrettier>
|
|
3940
3936
|
/**
|
|
3941
3937
|
* Require quotes around object literal property names
|
|
3942
3938
|
* @see https://eslint.org/docs/latest/rules/quote-props
|
|
@@ -14358,17 +14354,6 @@ type PreserveCaughtError = []|[{
|
|
|
14358
14354
|
|
|
14359
14355
|
requireCatchParameter?: boolean
|
|
14360
14356
|
}]
|
|
14361
|
-
// ----- prettier/prettier -----
|
|
14362
|
-
type PrettierPrettier = []|[{
|
|
14363
|
-
[k: string]: unknown | undefined
|
|
14364
|
-
}]|[{
|
|
14365
|
-
[k: string]: unknown | undefined
|
|
14366
|
-
}, {
|
|
14367
|
-
usePrettierrc?: boolean
|
|
14368
|
-
fileInfoOptions?: {
|
|
14369
|
-
[k: string]: unknown | undefined
|
|
14370
|
-
}
|
|
14371
|
-
}]
|
|
14372
14357
|
// ----- quote-props -----
|
|
14373
14358
|
type QuoteProps = ([]|[("always" | "as-needed" | "consistent" | "consistent-as-needed")] | []|[("always" | "as-needed" | "consistent" | "consistent-as-needed")]|[("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
|
|
14374
14359
|
keywords?: boolean
|
|
@@ -17995,7 +17980,7 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
17995
17980
|
onlyEquality?: boolean
|
|
17996
17981
|
}]
|
|
17997
17982
|
// Names of all the configs
|
|
17998
|
-
type ConfigNames = 'storm/cspell/rules' | 'storm/astro/setup' | 'storm/astro/rules' | 'storm/formatter/setup' | 'storm/imports/rules' | 'storm/graphql/setup' | 'storm/graphql/rules' | 'storm/graphql/relay' | 'storm/javascript/setup' | 'storm/javascript/banner' | 'storm/javascript/rules' | 'storm/jsx/rules' | 'storm/jsdoc/rules' | 'storm/jsonc/setup' | 'storm/jsonc/rules' | 'storm/markdown/setup' | 'storm/markdown/processor' | 'storm/markdown/parser' | 'storm/mdx/setup' | 'storm/node/rules' | 'storm/nx/setup' | 'storm/nx/schema' | 'storm/nx/dependency-check' | 'storm/nx/module-boundaries' | 'storm/next/rules' | 'storm/prettier
|
|
17983
|
+
type ConfigNames = 'storm/cspell/rules' | 'storm/astro/setup' | 'storm/astro/rules' | 'storm/formatter/setup' | 'storm/imports/rules' | 'storm/graphql/setup' | 'storm/graphql/rules' | 'storm/graphql/relay' | 'storm/javascript/setup' | 'storm/javascript/banner' | 'storm/javascript/rules' | 'storm/jsx/rules' | 'storm/jsdoc/rules' | 'storm/jsonc/setup' | 'storm/jsonc/rules' | 'storm/markdown/setup' | 'storm/markdown/processor' | 'storm/markdown/parser' | 'storm/mdx/setup' | 'storm/node/rules' | 'storm/nx/setup' | 'storm/nx/schema' | 'storm/nx/dependency-check' | 'storm/nx/module-boundaries' | 'storm/next/rules' | 'storm/prettier' | 'storm/perfectionist/rules' | 'storm/pnpm/setup' | 'storm/pnpm/package-json' | 'storm/pnpm/pnpm-workspace-yaml' | 'storm/react/setup' | 'storm/react/rules' | 'storm/react-native/rules' | 'storm/sort/package-json' | 'storm/stylistic/rules' | 'storm/secrets/rules' | 'storm/storybook/setup' | 'storm/storybook/rules' | 'storm/storybook/main' | 'storm/test/setup' | 'storm/test/rules' | 'storm/tsdoc/rules' | 'storm/toml/setup' | 'storm/toml/rules' | 'storm/typescript/setup' | 'storm/typescript/parser' | 'storm/typescript/type-aware-parser' | 'storm/typescript/rules' | 'storm/typescript/rules-type-aware' | 'storm/regexp/rules' | 'storm/unicorn/rules' | 'storm/unocss' | 'storm/yaml/setup' | 'storm/yaml/rules' | 'storm/zod/rules'
|
|
17999
17984
|
|
|
18000
17985
|
/**
|
|
18001
17986
|
* Vendor types from Prettier so we don't rely on the dependency.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.169.
|
|
3
|
+
"version": "0.169.89",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
"@eslint/eslintrc": "^3.3.3",
|
|
165
165
|
"@eslint/markdown": "^6.6.0",
|
|
166
166
|
"@nx/eslint-plugin": "^22.5.1",
|
|
167
|
-
"@storm-software/config": "^1.135.
|
|
168
|
-
"@storm-software/config-tools": "^1.189.
|
|
167
|
+
"@storm-software/config": "^1.135.6",
|
|
168
|
+
"@storm-software/config-tools": "^1.189.5",
|
|
169
169
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
170
170
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
171
171
|
"@typescript-eslint/parser": "^8.56.0",
|
|
@@ -241,5 +241,5 @@
|
|
|
241
241
|
},
|
|
242
242
|
"publishConfig": { "access": "public" },
|
|
243
243
|
"sideEffects": false,
|
|
244
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "b0785c83abfcdad80caf70edb6ff87ace9b049ba"
|
|
245
245
|
}
|