@jterrazz/test 10.0.0 → 11.0.0
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/README.md +101 -35
- package/dist/ambiguity.js +126 -0
- package/dist/appium.adapter.js +399 -0
- package/dist/checker.js +0 -1
- package/dist/index.d.ts +500 -101
- package/dist/index.js +587 -464
- package/dist/intercept.js +37 -84
- package/dist/match.js +12 -1
- package/dist/oxlint.cjs +420 -117
- package/dist/oxlint.d.cts +1 -1
- package/dist/oxlint.d.ts +1 -1
- package/dist/oxlint.js +420 -117
- package/dist/playwright.adapter.js +3 -127
- package/dist/queue.js +555 -0
- package/package.json +13 -4
package/dist/oxlint.d.cts
CHANGED
|
@@ -65,7 +65,7 @@ type RuleDoc = {
|
|
|
65
65
|
* The specification facet the rule guards — segments the catalogue like
|
|
66
66
|
* the constructors segment the API. `'shared'` for cross-facet rules.
|
|
67
67
|
*/
|
|
68
|
-
facet?: 'api' | 'cli' | 'jobs' | 'shared' | 'website';
|
|
68
|
+
facet?: 'api' | 'cli' | 'jobs' | 'mobile' | 'shared' | 'website';
|
|
69
69
|
/** Convention family letter, e.g. `'A'`. */
|
|
70
70
|
family: string;
|
|
71
71
|
/** Convention code, e.g. `'A1'`. */
|
package/dist/oxlint.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ type RuleDoc = {
|
|
|
65
65
|
* The specification facet the rule guards — segments the catalogue like
|
|
66
66
|
* the constructors segment the API. `'shared'` for cross-facet rules.
|
|
67
67
|
*/
|
|
68
|
-
facet?: 'api' | 'cli' | 'jobs' | 'shared' | 'website';
|
|
68
|
+
facet?: 'api' | 'cli' | 'jobs' | 'mobile' | 'shared' | 'website';
|
|
69
69
|
/** Convention family letter, e.g. `'A'`. */
|
|
70
70
|
family: string;
|
|
71
71
|
/** Convention code, e.g. `'A1'`. */
|