@jterrazz/typescript 10.1.7 → 10.1.8
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 +5 -1
package/package.json
CHANGED
package/rules/vitest.js
CHANGED
|
@@ -11,7 +11,11 @@ import { allOn, fragment, off, on, scoped, unsafeFix } from './_contract.js';
|
|
|
11
11
|
* `exclusive-pairs.test.ts` proves no profile ever arms both.
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* Where a vitest rule applies. Nothing outside these globs is a vitest file —
|
|
16
|
+
* a Playwright spec is `*.e2e.ts`, which no glob here names, and that suffix
|
|
17
|
+
* is the convention (docs/07-lint-presets.md, "Estate conventions").
|
|
18
|
+
*/
|
|
15
19
|
export const TEST_FILES = Object.freeze([
|
|
16
20
|
'**/*.{test,spec,test-d,spec-d}.{ts,tsx,js,jsx}',
|
|
17
21
|
'**/specs/**/*.{ts,tsx}',
|