@storm-software/eslint 0.169.21 → 0.169.23
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/types.d.ts +7 -1
- package/package.json +5 -5
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/types.d.ts
CHANGED
|
@@ -5908,6 +5908,11 @@ Backward pagination arguments
|
|
|
5908
5908
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
5909
5909
|
*/
|
|
5910
5910
|
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
5911
|
+
/**
|
|
5912
|
+
* ensure that every `expect.poll` call is awaited
|
|
5913
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-awaited-expect-poll.md
|
|
5914
|
+
*/
|
|
5915
|
+
'test/require-awaited-expect-poll'?: Linter.RuleEntry<[]>
|
|
5911
5916
|
/**
|
|
5912
5917
|
* require setup and teardown to be within a hook
|
|
5913
5918
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
@@ -15791,7 +15796,8 @@ type TestNoFocusedTests = []|[{
|
|
|
15791
15796
|
}]
|
|
15792
15797
|
// ----- test/no-hooks -----
|
|
15793
15798
|
type TestNoHooks = []|[{
|
|
15794
|
-
|
|
15799
|
+
|
|
15800
|
+
allow?: ("beforeAll" | "beforeEach" | "afterAll" | "afterEach")[]
|
|
15795
15801
|
}]
|
|
15796
15802
|
// ----- test/no-large-snapshots -----
|
|
15797
15803
|
type TestNoLargeSnapshots = []|[{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.169.
|
|
3
|
+
"version": "0.169.23",
|
|
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,13 +164,13 @@
|
|
|
164
164
|
"@eslint/eslintrc": "^3.3.1",
|
|
165
165
|
"@eslint/markdown": "^6.6.0",
|
|
166
166
|
"@nx/eslint-plugin": "^22.0.2",
|
|
167
|
-
"@storm-software/config": "^1.134.
|
|
168
|
-
"@storm-software/config-tools": "^1.188.
|
|
167
|
+
"@storm-software/config": "^1.134.23",
|
|
168
|
+
"@storm-software/config-tools": "^1.188.23",
|
|
169
169
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
170
170
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
171
171
|
"@typescript-eslint/parser": "^8.46.3",
|
|
172
172
|
"@typescript-eslint/utils": "^8.46.3",
|
|
173
|
-
"@vitest/eslint-plugin": "^1.4.
|
|
173
|
+
"@vitest/eslint-plugin": "^1.4.2",
|
|
174
174
|
"chalk": "^4.1.2",
|
|
175
175
|
"defu": "6.1.4",
|
|
176
176
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
@@ -241,5 +241,5 @@
|
|
|
241
241
|
},
|
|
242
242
|
"publishConfig": { "access": "public" },
|
|
243
243
|
"sideEffects": false,
|
|
244
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "9aebc0002b4ab1faba0dd8b77be1ade49e45b6cc"
|
|
245
245
|
}
|