@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rules/vitest.js +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
- "version": "10.1.8",
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
@@ -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`, which no glob here names, and that suffix
17
- * is the convention (docs/07-lint-presets.md, "Estate conventions").
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}',