@jterrazz/typescript 10.1.8 → 10.1.9
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/package.json +1 -1
- package/rules/vitest.js +3 -2
package/package.json
CHANGED
package/rules/vitest.js
CHANGED
|
@@ -13,8 +13,9 @@ import { allOn, fragment, off, on, scoped, unsafeFix } from './_contract.js';
|
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Where a vitest rule applies. Nothing outside these globs is a vitest file —
|
|
16
|
-
* a Playwright spec is `*.e2e.ts
|
|
17
|
-
*
|
|
16
|
+
* a Playwright spec is `*.e2e.ts` and a jest-expo render test `*.render.tsx`,
|
|
17
|
+
* which no glob here names: a file another runner owns takes that runner's
|
|
18
|
+
* suffix (docs/07-lint-presets.md, "Estate conventions").
|
|
18
19
|
*/
|
|
19
20
|
export const TEST_FILES = Object.freeze([
|
|
20
21
|
'**/*.{test,spec,test-d,spec-d}.{ts,tsx,js,jsx}',
|