@vitest/eslint-plugin 1.1.22 → 1.1.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/dist/index.cjs +29 -28
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +29 -28
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -23,7 +23,7 @@ function _interopNamespaceCompat(e) {
|
|
|
23
23
|
const path__namespace = /*#__PURE__*/_interopNamespaceCompat(path);
|
|
24
24
|
const ts__default = /*#__PURE__*/_interopDefaultCompat(ts);
|
|
25
25
|
|
|
26
|
-
const version = "1.1.
|
|
26
|
+
const version = "1.1.22";
|
|
27
27
|
|
|
28
28
|
function createEslintRule(rule) {
|
|
29
29
|
const createRule = utils.ESLintUtils.RuleCreator(
|
|
@@ -530,7 +530,7 @@ const maxNestedDescribe = createEslintRule({
|
|
|
530
530
|
}
|
|
531
531
|
],
|
|
532
532
|
messages: {
|
|
533
|
-
maxNestedDescribe: "Nested describe block should be less than set max value
|
|
533
|
+
maxNestedDescribe: "Nested describe block should be less than set max value"
|
|
534
534
|
}
|
|
535
535
|
},
|
|
536
536
|
defaultOptions: [
|
|
@@ -660,7 +660,7 @@ const noFocusedTests = createEslintRule({
|
|
|
660
660
|
}
|
|
661
661
|
],
|
|
662
662
|
messages: {
|
|
663
|
-
noFocusedTests: "Focused tests are not allowed
|
|
663
|
+
noFocusedTests: "Focused tests are not allowed"
|
|
664
664
|
}
|
|
665
665
|
},
|
|
666
666
|
defaultOptions: [{ fixable: true }],
|
|
@@ -721,7 +721,7 @@ const noConditionalTest = createEslintRule({
|
|
|
721
721
|
},
|
|
722
722
|
schema: [],
|
|
723
723
|
messages: {
|
|
724
|
-
noConditionalTests: "Avoid using if conditions in a test
|
|
724
|
+
noConditionalTests: "Avoid using if conditions in a test"
|
|
725
725
|
}
|
|
726
726
|
},
|
|
727
727
|
defaultOptions: [],
|
|
@@ -1141,7 +1141,7 @@ const consistentTestFilename = createEslintRule({
|
|
|
1141
1141
|
description: "require .spec test file pattern"
|
|
1142
1142
|
},
|
|
1143
1143
|
messages: {
|
|
1144
|
-
consistentTestFilename: "
|
|
1144
|
+
consistentTestFilename: "Use test file name pattern {{ pattern }}"
|
|
1145
1145
|
},
|
|
1146
1146
|
schema: [
|
|
1147
1147
|
{
|
|
@@ -1197,7 +1197,7 @@ const maxExpect = createEslintRule({
|
|
|
1197
1197
|
description: "enforce a maximum number of expect per test"
|
|
1198
1198
|
},
|
|
1199
1199
|
messages: {
|
|
1200
|
-
maxExpect: "Too many assertion calls ({{count}})
|
|
1200
|
+
maxExpect: "Too many assertion calls ({{ count }}) - maximum allowed is {{ max }}"
|
|
1201
1201
|
},
|
|
1202
1202
|
type: "suggestion",
|
|
1203
1203
|
schema: [
|
|
@@ -1310,7 +1310,7 @@ const noCommentedOutTests = createEslintRule({
|
|
|
1310
1310
|
recommended: false
|
|
1311
1311
|
},
|
|
1312
1312
|
messages: {
|
|
1313
|
-
noCommentedOutTests: "Remove commented out tests
|
|
1313
|
+
noCommentedOutTests: "Remove commented out tests - you may want to use `skip` or `only` instead"
|
|
1314
1314
|
},
|
|
1315
1315
|
schema: [],
|
|
1316
1316
|
type: "suggestion"
|
|
@@ -1479,8 +1479,8 @@ const noDisabledTests = createEslintRule({
|
|
|
1479
1479
|
pending: "Call to pending()",
|
|
1480
1480
|
pendingSuite: "Call to pending() within test suite",
|
|
1481
1481
|
pendingTest: "Call to pending() within test",
|
|
1482
|
-
disabledSuite: "Disabled test suite
|
|
1483
|
-
disabledTest: "Disabled test
|
|
1482
|
+
disabledSuite: "Disabled test suite - if you want to skip a test suite temporarily, use .todo() instead",
|
|
1483
|
+
disabledTest: "Disabled test - if you want to skip a test temporarily, use .todo() instead"
|
|
1484
1484
|
},
|
|
1485
1485
|
schema: []
|
|
1486
1486
|
},
|
|
@@ -1654,7 +1654,7 @@ const noDuplicateHooks = createEslintRule({
|
|
|
1654
1654
|
requiresTypeChecking: false
|
|
1655
1655
|
},
|
|
1656
1656
|
messages: {
|
|
1657
|
-
noDuplicateHooks: "Duplicate {{hook}} in describe block
|
|
1657
|
+
noDuplicateHooks: "Duplicate {{ hook }} in describe block"
|
|
1658
1658
|
},
|
|
1659
1659
|
schema: [],
|
|
1660
1660
|
type: "suggestion"
|
|
@@ -1832,7 +1832,7 @@ const noMocksImport = createEslintRule({
|
|
|
1832
1832
|
recommended: false
|
|
1833
1833
|
},
|
|
1834
1834
|
messages: {
|
|
1835
|
-
noMocksImport: `Mocks should not be manually imported from a ${mocksDirName} directory. Instead use \`vi.mock\` and import from the original module path
|
|
1835
|
+
noMocksImport: `Mocks should not be manually imported from a ${mocksDirName} directory. Instead use \`vi.mock\` and import from the original module path`
|
|
1836
1836
|
},
|
|
1837
1837
|
schema: []
|
|
1838
1838
|
},
|
|
@@ -2004,7 +2004,7 @@ const noTestPrefixes = createEslintRule({
|
|
|
2004
2004
|
},
|
|
2005
2005
|
type: "suggestion",
|
|
2006
2006
|
messages: {
|
|
2007
|
-
usePreferredName: 'Use "{{preferredNodeName}}" instead'
|
|
2007
|
+
usePreferredName: 'Use "{{ preferredNodeName }}" instead'
|
|
2008
2008
|
},
|
|
2009
2009
|
fixable: "code",
|
|
2010
2010
|
schema: []
|
|
@@ -2175,14 +2175,14 @@ const validTitle = createEslintRule({
|
|
|
2175
2175
|
},
|
|
2176
2176
|
messages: {
|
|
2177
2177
|
titleMustBeString: "Test title must be a string, a function or class name",
|
|
2178
|
-
emptyTitle: "{{functionName}} should not have an empty title",
|
|
2178
|
+
emptyTitle: "{{ functionName }} should not have an empty title",
|
|
2179
2179
|
duplicatePrefix: "should not have duplicate prefix",
|
|
2180
2180
|
accidentalSpace: "should not have leading or trailing spaces",
|
|
2181
|
-
disallowedWord: '"{{word}}" is not allowed in test title',
|
|
2182
|
-
mustNotMatch: "{{functionName}} should not match {{pattern}}",
|
|
2183
|
-
mustMatch: "{{functionName}} should match {{pattern}}",
|
|
2184
|
-
mustNotMatchCustom: "{{message}}",
|
|
2185
|
-
mustMatchCustom: "{{message}}"
|
|
2181
|
+
disallowedWord: '"{{ word }}" is not allowed in test title',
|
|
2182
|
+
mustNotMatch: "{{ functionName }} should not match {{ pattern }}",
|
|
2183
|
+
mustMatch: "{{ functionName }} should match {{ pattern }}",
|
|
2184
|
+
mustNotMatchCustom: "{{ message }}",
|
|
2185
|
+
mustMatchCustom: "{{ message }}"
|
|
2186
2186
|
},
|
|
2187
2187
|
type: "suggestion",
|
|
2188
2188
|
schema: [
|
|
@@ -2396,13 +2396,13 @@ const validExpect = createEslintRule({
|
|
|
2396
2396
|
recommended: false
|
|
2397
2397
|
},
|
|
2398
2398
|
messages: {
|
|
2399
|
-
tooManyArgs: "Expect takes most {{ amount}} argument{{s}}",
|
|
2400
|
-
notEnoughArgs: "Expect requires
|
|
2401
|
-
modifierUnknown: "Expect has unknown modifier",
|
|
2402
|
-
matcherNotFound: "Expect must have a corresponding matcher call
|
|
2403
|
-
matcherNotCalled: "Matchers must be called to assert
|
|
2404
|
-
asyncMustBeAwaited: "Async assertions must be awaited{{orReturned}}",
|
|
2405
|
-
promisesWithAsyncAssertionsMustBeAwaited: "Promises which return async assertions must be awaited{{orReturned}}"
|
|
2399
|
+
tooManyArgs: "Expect takes at most {{ amount}} argument{{ s }}",
|
|
2400
|
+
notEnoughArgs: "Expect requires at least {{ amount }} argument{{ s }}",
|
|
2401
|
+
modifierUnknown: "Expect has an unknown modifier",
|
|
2402
|
+
matcherNotFound: "Expect must have a corresponding matcher call",
|
|
2403
|
+
matcherNotCalled: "Matchers must be called to assert",
|
|
2404
|
+
asyncMustBeAwaited: "Async assertions must be awaited{{ orReturned }}",
|
|
2405
|
+
promisesWithAsyncAssertionsMustBeAwaited: "Promises which return async assertions must be awaited{{ orReturned }}"
|
|
2406
2406
|
},
|
|
2407
2407
|
type: "suggestion",
|
|
2408
2408
|
fixable: "code",
|
|
@@ -2609,7 +2609,7 @@ const preferToBeObject = createEslintRule({
|
|
|
2609
2609
|
},
|
|
2610
2610
|
fixable: "code",
|
|
2611
2611
|
messages: {
|
|
2612
|
-
preferToBeObject: "Prefer toBeObject() to test if a value is an object
|
|
2612
|
+
preferToBeObject: "Prefer toBeObject() to test if a value is an object"
|
|
2613
2613
|
},
|
|
2614
2614
|
schema: []
|
|
2615
2615
|
},
|
|
@@ -3473,8 +3473,8 @@ const requireTopLevelDescribe = createEslintRule({
|
|
|
3473
3473
|
},
|
|
3474
3474
|
messages: {
|
|
3475
3475
|
tooManyDescribes: "There should not be more than {{ max }} describe{{ s }} at the top level",
|
|
3476
|
-
unexpectedTestCase: "All test cases must be wrapped in a describe block
|
|
3477
|
-
unexpectedHook: "All hooks must be wrapped in a describe block
|
|
3476
|
+
unexpectedTestCase: "All test cases must be wrapped in a describe block",
|
|
3477
|
+
unexpectedHook: "All hooks must be wrapped in a describe block"
|
|
3478
3478
|
},
|
|
3479
3479
|
type: "suggestion",
|
|
3480
3480
|
schema: [
|
|
@@ -4884,6 +4884,7 @@ const plugin = {
|
|
|
4884
4884
|
name: "vitest",
|
|
4885
4885
|
version
|
|
4886
4886
|
},
|
|
4887
|
+
configs: {},
|
|
4887
4888
|
rules: {
|
|
4888
4889
|
[RULE_NAME$Z]: lowerCaseTitle,
|
|
4889
4890
|
[RULE_NAME$Y]: maxNestedDescribe,
|
package/dist/index.d.cts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Linter, RuleModule } from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface VitestPlugin extends Linter.Plugin {
|
|
4
4
|
meta: {
|
|
5
5
|
name: string;
|
|
6
6
|
version: string;
|
|
7
7
|
};
|
|
8
8
|
rules: Record<string, RuleModule<any, any>>;
|
|
9
|
-
configs
|
|
9
|
+
configs: Record<string, any>;
|
|
10
10
|
environments?: Record<string, any>;
|
|
11
11
|
}
|
|
12
|
-
declare const plugin:
|
|
12
|
+
declare const plugin: VitestPlugin;
|
|
13
13
|
|
|
14
14
|
export { plugin as default };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Linter, RuleModule } from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface VitestPlugin extends Linter.Plugin {
|
|
4
4
|
meta: {
|
|
5
5
|
name: string;
|
|
6
6
|
version: string;
|
|
7
7
|
};
|
|
8
8
|
rules: Record<string, RuleModule<any, any>>;
|
|
9
|
-
configs
|
|
9
|
+
configs: Record<string, any>;
|
|
10
10
|
environments?: Record<string, any>;
|
|
11
11
|
}
|
|
12
|
-
declare const plugin:
|
|
12
|
+
declare const plugin: VitestPlugin;
|
|
13
13
|
|
|
14
14
|
export { plugin as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Linter, RuleModule } from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface VitestPlugin extends Linter.Plugin {
|
|
4
4
|
meta: {
|
|
5
5
|
name: string;
|
|
6
6
|
version: string;
|
|
7
7
|
};
|
|
8
8
|
rules: Record<string, RuleModule<any, any>>;
|
|
9
|
-
configs
|
|
9
|
+
configs: Record<string, any>;
|
|
10
10
|
environments?: Record<string, any>;
|
|
11
11
|
}
|
|
12
|
-
declare const plugin:
|
|
12
|
+
declare const plugin: VitestPlugin;
|
|
13
13
|
|
|
14
14
|
export { plugin as default };
|
package/dist/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { isAbsolute, posix } from 'node:path';
|
|
|
4
4
|
import ts from 'typescript';
|
|
5
5
|
import { createRequire } from 'node:module';
|
|
6
6
|
|
|
7
|
-
const version = "1.1.
|
|
7
|
+
const version = "1.1.22";
|
|
8
8
|
|
|
9
9
|
function createEslintRule(rule) {
|
|
10
10
|
const createRule = ESLintUtils.RuleCreator(
|
|
@@ -511,7 +511,7 @@ const maxNestedDescribe = createEslintRule({
|
|
|
511
511
|
}
|
|
512
512
|
],
|
|
513
513
|
messages: {
|
|
514
|
-
maxNestedDescribe: "Nested describe block should be less than set max value
|
|
514
|
+
maxNestedDescribe: "Nested describe block should be less than set max value"
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
defaultOptions: [
|
|
@@ -641,7 +641,7 @@ const noFocusedTests = createEslintRule({
|
|
|
641
641
|
}
|
|
642
642
|
],
|
|
643
643
|
messages: {
|
|
644
|
-
noFocusedTests: "Focused tests are not allowed
|
|
644
|
+
noFocusedTests: "Focused tests are not allowed"
|
|
645
645
|
}
|
|
646
646
|
},
|
|
647
647
|
defaultOptions: [{ fixable: true }],
|
|
@@ -702,7 +702,7 @@ const noConditionalTest = createEslintRule({
|
|
|
702
702
|
},
|
|
703
703
|
schema: [],
|
|
704
704
|
messages: {
|
|
705
|
-
noConditionalTests: "Avoid using if conditions in a test
|
|
705
|
+
noConditionalTests: "Avoid using if conditions in a test"
|
|
706
706
|
}
|
|
707
707
|
},
|
|
708
708
|
defaultOptions: [],
|
|
@@ -1122,7 +1122,7 @@ const consistentTestFilename = createEslintRule({
|
|
|
1122
1122
|
description: "require .spec test file pattern"
|
|
1123
1123
|
},
|
|
1124
1124
|
messages: {
|
|
1125
|
-
consistentTestFilename: "
|
|
1125
|
+
consistentTestFilename: "Use test file name pattern {{ pattern }}"
|
|
1126
1126
|
},
|
|
1127
1127
|
schema: [
|
|
1128
1128
|
{
|
|
@@ -1178,7 +1178,7 @@ const maxExpect = createEslintRule({
|
|
|
1178
1178
|
description: "enforce a maximum number of expect per test"
|
|
1179
1179
|
},
|
|
1180
1180
|
messages: {
|
|
1181
|
-
maxExpect: "Too many assertion calls ({{count}})
|
|
1181
|
+
maxExpect: "Too many assertion calls ({{ count }}) - maximum allowed is {{ max }}"
|
|
1182
1182
|
},
|
|
1183
1183
|
type: "suggestion",
|
|
1184
1184
|
schema: [
|
|
@@ -1291,7 +1291,7 @@ const noCommentedOutTests = createEslintRule({
|
|
|
1291
1291
|
recommended: false
|
|
1292
1292
|
},
|
|
1293
1293
|
messages: {
|
|
1294
|
-
noCommentedOutTests: "Remove commented out tests
|
|
1294
|
+
noCommentedOutTests: "Remove commented out tests - you may want to use `skip` or `only` instead"
|
|
1295
1295
|
},
|
|
1296
1296
|
schema: [],
|
|
1297
1297
|
type: "suggestion"
|
|
@@ -1460,8 +1460,8 @@ const noDisabledTests = createEslintRule({
|
|
|
1460
1460
|
pending: "Call to pending()",
|
|
1461
1461
|
pendingSuite: "Call to pending() within test suite",
|
|
1462
1462
|
pendingTest: "Call to pending() within test",
|
|
1463
|
-
disabledSuite: "Disabled test suite
|
|
1464
|
-
disabledTest: "Disabled test
|
|
1463
|
+
disabledSuite: "Disabled test suite - if you want to skip a test suite temporarily, use .todo() instead",
|
|
1464
|
+
disabledTest: "Disabled test - if you want to skip a test temporarily, use .todo() instead"
|
|
1465
1465
|
},
|
|
1466
1466
|
schema: []
|
|
1467
1467
|
},
|
|
@@ -1635,7 +1635,7 @@ const noDuplicateHooks = createEslintRule({
|
|
|
1635
1635
|
requiresTypeChecking: false
|
|
1636
1636
|
},
|
|
1637
1637
|
messages: {
|
|
1638
|
-
noDuplicateHooks: "Duplicate {{hook}} in describe block
|
|
1638
|
+
noDuplicateHooks: "Duplicate {{ hook }} in describe block"
|
|
1639
1639
|
},
|
|
1640
1640
|
schema: [],
|
|
1641
1641
|
type: "suggestion"
|
|
@@ -1813,7 +1813,7 @@ const noMocksImport = createEslintRule({
|
|
|
1813
1813
|
recommended: false
|
|
1814
1814
|
},
|
|
1815
1815
|
messages: {
|
|
1816
|
-
noMocksImport: `Mocks should not be manually imported from a ${mocksDirName} directory. Instead use \`vi.mock\` and import from the original module path
|
|
1816
|
+
noMocksImport: `Mocks should not be manually imported from a ${mocksDirName} directory. Instead use \`vi.mock\` and import from the original module path`
|
|
1817
1817
|
},
|
|
1818
1818
|
schema: []
|
|
1819
1819
|
},
|
|
@@ -1985,7 +1985,7 @@ const noTestPrefixes = createEslintRule({
|
|
|
1985
1985
|
},
|
|
1986
1986
|
type: "suggestion",
|
|
1987
1987
|
messages: {
|
|
1988
|
-
usePreferredName: 'Use "{{preferredNodeName}}" instead'
|
|
1988
|
+
usePreferredName: 'Use "{{ preferredNodeName }}" instead'
|
|
1989
1989
|
},
|
|
1990
1990
|
fixable: "code",
|
|
1991
1991
|
schema: []
|
|
@@ -2156,14 +2156,14 @@ const validTitle = createEslintRule({
|
|
|
2156
2156
|
},
|
|
2157
2157
|
messages: {
|
|
2158
2158
|
titleMustBeString: "Test title must be a string, a function or class name",
|
|
2159
|
-
emptyTitle: "{{functionName}} should not have an empty title",
|
|
2159
|
+
emptyTitle: "{{ functionName }} should not have an empty title",
|
|
2160
2160
|
duplicatePrefix: "should not have duplicate prefix",
|
|
2161
2161
|
accidentalSpace: "should not have leading or trailing spaces",
|
|
2162
|
-
disallowedWord: '"{{word}}" is not allowed in test title',
|
|
2163
|
-
mustNotMatch: "{{functionName}} should not match {{pattern}}",
|
|
2164
|
-
mustMatch: "{{functionName}} should match {{pattern}}",
|
|
2165
|
-
mustNotMatchCustom: "{{message}}",
|
|
2166
|
-
mustMatchCustom: "{{message}}"
|
|
2162
|
+
disallowedWord: '"{{ word }}" is not allowed in test title',
|
|
2163
|
+
mustNotMatch: "{{ functionName }} should not match {{ pattern }}",
|
|
2164
|
+
mustMatch: "{{ functionName }} should match {{ pattern }}",
|
|
2165
|
+
mustNotMatchCustom: "{{ message }}",
|
|
2166
|
+
mustMatchCustom: "{{ message }}"
|
|
2167
2167
|
},
|
|
2168
2168
|
type: "suggestion",
|
|
2169
2169
|
schema: [
|
|
@@ -2377,13 +2377,13 @@ const validExpect = createEslintRule({
|
|
|
2377
2377
|
recommended: false
|
|
2378
2378
|
},
|
|
2379
2379
|
messages: {
|
|
2380
|
-
tooManyArgs: "Expect takes most {{ amount}} argument{{s}}",
|
|
2381
|
-
notEnoughArgs: "Expect requires
|
|
2382
|
-
modifierUnknown: "Expect has unknown modifier",
|
|
2383
|
-
matcherNotFound: "Expect must have a corresponding matcher call
|
|
2384
|
-
matcherNotCalled: "Matchers must be called to assert
|
|
2385
|
-
asyncMustBeAwaited: "Async assertions must be awaited{{orReturned}}",
|
|
2386
|
-
promisesWithAsyncAssertionsMustBeAwaited: "Promises which return async assertions must be awaited{{orReturned}}"
|
|
2380
|
+
tooManyArgs: "Expect takes at most {{ amount}} argument{{ s }}",
|
|
2381
|
+
notEnoughArgs: "Expect requires at least {{ amount }} argument{{ s }}",
|
|
2382
|
+
modifierUnknown: "Expect has an unknown modifier",
|
|
2383
|
+
matcherNotFound: "Expect must have a corresponding matcher call",
|
|
2384
|
+
matcherNotCalled: "Matchers must be called to assert",
|
|
2385
|
+
asyncMustBeAwaited: "Async assertions must be awaited{{ orReturned }}",
|
|
2386
|
+
promisesWithAsyncAssertionsMustBeAwaited: "Promises which return async assertions must be awaited{{ orReturned }}"
|
|
2387
2387
|
},
|
|
2388
2388
|
type: "suggestion",
|
|
2389
2389
|
fixable: "code",
|
|
@@ -2590,7 +2590,7 @@ const preferToBeObject = createEslintRule({
|
|
|
2590
2590
|
},
|
|
2591
2591
|
fixable: "code",
|
|
2592
2592
|
messages: {
|
|
2593
|
-
preferToBeObject: "Prefer toBeObject() to test if a value is an object
|
|
2593
|
+
preferToBeObject: "Prefer toBeObject() to test if a value is an object"
|
|
2594
2594
|
},
|
|
2595
2595
|
schema: []
|
|
2596
2596
|
},
|
|
@@ -3454,8 +3454,8 @@ const requireTopLevelDescribe = createEslintRule({
|
|
|
3454
3454
|
},
|
|
3455
3455
|
messages: {
|
|
3456
3456
|
tooManyDescribes: "There should not be more than {{ max }} describe{{ s }} at the top level",
|
|
3457
|
-
unexpectedTestCase: "All test cases must be wrapped in a describe block
|
|
3458
|
-
unexpectedHook: "All hooks must be wrapped in a describe block
|
|
3457
|
+
unexpectedTestCase: "All test cases must be wrapped in a describe block",
|
|
3458
|
+
unexpectedHook: "All hooks must be wrapped in a describe block"
|
|
3459
3459
|
},
|
|
3460
3460
|
type: "suggestion",
|
|
3461
3461
|
schema: [
|
|
@@ -4865,6 +4865,7 @@ const plugin = {
|
|
|
4865
4865
|
name: "vitest",
|
|
4866
4866
|
version
|
|
4867
4867
|
},
|
|
4868
|
+
configs: {},
|
|
4868
4869
|
rules: {
|
|
4869
4870
|
[RULE_NAME$Z]: lowerCaseTitle,
|
|
4870
4871
|
[RULE_NAME$Y]: maxNestedDescribe,
|