@storm-software/eslint 0.155.4 → 0.155.6
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 -2
- package/dist/preset.js +1 -1
- package/dist/types.d.ts +9 -3
- package/package.json +4 -4
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 -->
|
|
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
-
|
|
44
43
|
## Table of Contents
|
|
45
44
|
|
|
46
45
|
- [Storm Base ESLint Package](#storm-base-eslint-package)
|
package/dist/preset.js
CHANGED
|
@@ -689,7 +689,7 @@ import { default as default4 } from "eslint-plugin-n";
|
|
|
689
689
|
import { default as default5 } from "eslint-plugin-no-secrets";
|
|
690
690
|
import { default as default6 } from "eslint-plugin-perfectionist";
|
|
691
691
|
|
|
692
|
-
// ../../node_modules/.pnpm/eslint-plugin-pnpm@0.3.0_patch_hash=
|
|
692
|
+
// ../../node_modules/.pnpm/eslint-plugin-pnpm@0.3.0_patch_hash=72dcde755c336eeca3e6170de1106fd85ecb66171e060788f80_5122e2c143bf4def12480ca5a032b993/node_modules/eslint-plugin-pnpm/dist/index.mjs
|
|
693
693
|
import * as jsoncParser from "jsonc-eslint-parser";
|
|
694
694
|
import * as yamlParser from "yaml-eslint-parser";
|
|
695
695
|
import fs, { existsSync, readFileSync } from "node:fs";
|
package/dist/types.d.ts
CHANGED
|
@@ -502,12 +502,12 @@ Backward pagination arguments
|
|
|
502
502
|
'@next/next/no-unwanted-polyfillio'?: Linter.RuleEntry<[]>
|
|
503
503
|
/**
|
|
504
504
|
* Checks dependencies in project's package.json for version mismatches
|
|
505
|
-
* @see https://github.com/nrwl/nx/blob/21.0.
|
|
505
|
+
* @see https://github.com/nrwl/nx/blob/21.0.3/docs/generated/packages/eslint-plugin/documents/dependency-checks.md
|
|
506
506
|
*/
|
|
507
507
|
'@nx/dependency-checks'?: Linter.RuleEntry<NxDependencyChecks>
|
|
508
508
|
/**
|
|
509
509
|
* Ensure that module boundaries are respected within the monorepo
|
|
510
|
-
* @see https://github.com/nrwl/nx/blob/21.0.
|
|
510
|
+
* @see https://github.com/nrwl/nx/blob/21.0.3/docs/generated/packages/eslint-plugin/documents/enforce-module-boundaries.md
|
|
511
511
|
*/
|
|
512
512
|
'@nx/enforce-module-boundaries'?: Linter.RuleEntry<NxEnforceModuleBoundaries>
|
|
513
513
|
/**
|
|
@@ -3171,7 +3171,7 @@ Backward pagination arguments
|
|
|
3171
3171
|
* Disallow identifiers from shadowing restricted names
|
|
3172
3172
|
* @see https://eslint.org/docs/latest/rules/no-shadow-restricted-names
|
|
3173
3173
|
*/
|
|
3174
|
-
'no-shadow-restricted-names'?: Linter.RuleEntry<
|
|
3174
|
+
'no-shadow-restricted-names'?: Linter.RuleEntry<NoShadowRestrictedNames>
|
|
3175
3175
|
/**
|
|
3176
3176
|
* Disallow spacing between function identifiers and their applications (deprecated)
|
|
3177
3177
|
* @see https://eslint.org/docs/latest/rules/no-spaced-func
|
|
@@ -10630,6 +10630,10 @@ type NoShadow = []|[{
|
|
|
10630
10630
|
allow?: string[]
|
|
10631
10631
|
ignoreOnInitialization?: boolean
|
|
10632
10632
|
}]
|
|
10633
|
+
// ----- no-shadow-restricted-names -----
|
|
10634
|
+
type NoShadowRestrictedNames = []|[{
|
|
10635
|
+
reportGlobalThis?: boolean
|
|
10636
|
+
}]
|
|
10633
10637
|
// ----- no-sync -----
|
|
10634
10638
|
type NoSync = []|[{
|
|
10635
10639
|
allowAtRootLevel?: boolean
|
|
@@ -10681,6 +10685,7 @@ type NoUnusedExpressions = []|[{
|
|
|
10681
10685
|
allowTernary?: boolean
|
|
10682
10686
|
allowTaggedTemplates?: boolean
|
|
10683
10687
|
enforceForJSX?: boolean
|
|
10688
|
+
ignoreDirectives?: boolean
|
|
10684
10689
|
}]
|
|
10685
10690
|
// ----- no-unused-vars -----
|
|
10686
10691
|
type NoUnusedVars = []|[(("all" | "local") | {
|
|
@@ -15762,6 +15767,7 @@ type TsNoUnusedExpressions = []|[{
|
|
|
15762
15767
|
allowTernary?: boolean
|
|
15763
15768
|
allowTaggedTemplates?: boolean
|
|
15764
15769
|
enforceForJSX?: boolean
|
|
15770
|
+
ignoreDirectives?: boolean
|
|
15765
15771
|
}]
|
|
15766
15772
|
// ----- ts/no-unused-vars -----
|
|
15767
15773
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.155.
|
|
3
|
+
"version": "0.155.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"@eslint-react/eslint-plugin": "^1.19.0",
|
|
140
140
|
"@graphql-eslint/eslint-plugin": "^4.3.0",
|
|
141
141
|
"@next/eslint-plugin-next": "^15.2.0-canary.67",
|
|
142
|
-
"@nx/eslint": "21.0.
|
|
142
|
+
"@nx/eslint": "21.0.3",
|
|
143
143
|
"@prettier/plugin-xml": "^3.4.1",
|
|
144
144
|
"@unocss/eslint-plugin": ">=0.50.0",
|
|
145
145
|
"astro-eslint-parser": "^1.0.2",
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"@cspell/eslint-plugin": "^8.19.4",
|
|
162
162
|
"@eslint/eslintrc": "^3.3.1",
|
|
163
163
|
"@eslint/markdown": "^6.4.0",
|
|
164
|
-
"@nx/eslint-plugin": "21.0.
|
|
164
|
+
"@nx/eslint-plugin": "21.0.3",
|
|
165
165
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
166
166
|
"@typescript-eslint/eslint-plugin": "^8.32.0",
|
|
167
167
|
"@typescript-eslint/parser": "^8.32.0",
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
"@eslint/config-inspector": "^0.5.6",
|
|
209
209
|
"@graphql-eslint/eslint-plugin": "^4.4.0",
|
|
210
210
|
"@next/eslint-plugin-next": "^15.3.2",
|
|
211
|
-
"@nx/eslint": "21.0.
|
|
211
|
+
"@nx/eslint": "21.0.3",
|
|
212
212
|
"@prettier/plugin-xml": "^3.4.1",
|
|
213
213
|
"@stylistic/eslint-plugin-migrate": "^4.2.0",
|
|
214
214
|
"@types/eslint": "^9.6.1",
|