@jterrazz/typescript 10.1.7 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rules/vitest.js +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
- "version": "10.1.7",
3
+ "version": "10.1.9",
4
4
  "license": "MIT",
5
5
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
6
6
  "repository": {
package/rules/vitest.js CHANGED
@@ -11,7 +11,12 @@ 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
- /** Where a vitest rule applies. Nothing outside these globs is a test. */
14
+ /**
15
+ * Where a vitest rule applies. Nothing outside these globs is a vitest file —
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").
19
+ */
15
20
  export const TEST_FILES = Object.freeze([
16
21
  '**/*.{test,spec,test-d,spec-d}.{ts,tsx,js,jsx}',
17
22
  '**/specs/**/*.{ts,tsx}',