eslint-plugin-playwright 1.2.0 → 1.3.1
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 +53 -49
- package/dist/index.d.mts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +442 -20
- package/dist/index.mjs +488 -24
- package/package.json +5 -7
package/README.md
CHANGED
|
@@ -109,52 +109,56 @@ can configure this plugin to be aware of these additional names.
|
|
|
109
109
|
}
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
##
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
[suggestions](https://eslint.org/docs/latest/developer-guide/working-with-rules#providing-suggestions)
|
|
119
|
-
|
|
120
|
-
|
|
|
121
|
-
|
|
|
122
|
-
|
|
|
123
|
-
|
|
|
124
|
-
|
|
|
125
|
-
|
|
|
126
|
-
|
|
|
127
|
-
|
|
|
128
|
-
|
|
|
129
|
-
|
|
|
130
|
-
|
|
|
131
|
-
|
|
|
132
|
-
|
|
|
133
|
-
|
|
|
134
|
-
|
|
|
135
|
-
|
|
|
136
|
-
|
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
|
|
|
145
|
-
|
|
|
146
|
-
|
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
159
|
-
|
|
|
160
|
-
|
|
|
112
|
+
## Rules
|
|
113
|
+
|
|
114
|
+
✅ Set in the `recommended` configuration\
|
|
115
|
+
🔧 Automatically fixable by the [`--fix`](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix)
|
|
116
|
+
CLI option\
|
|
117
|
+
💡 Manually fixable by
|
|
118
|
+
[editor suggestions](https://eslint.org/docs/latest/developer-guide/working-with-rules#providing-suggestions)
|
|
119
|
+
|
|
120
|
+
| Rule | Description | ✅ | 🔧 | 💡 |
|
|
121
|
+
| --------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | :-: | :-: | :-: |
|
|
122
|
+
| [expect-expect](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/expect-expect.md) | Enforce assertion to be made in a test body | ✅ | | |
|
|
123
|
+
| [max-expects](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/max-expects.md) | Enforces a maximum number assertion calls in a test body | ✅ | | |
|
|
124
|
+
| [max-nested-describe](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/max-nested-describe.md) | Enforces a maximum depth to nested describe calls | ✅ | | |
|
|
125
|
+
| [missing-playwright-await](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/missing-playwright-await.md) | Enforce Playwright APIs to be awaited | ✅ | 🔧 | |
|
|
126
|
+
| [no-commented-out-test](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-commented-out-test.md) | Disallow commented out tests | | | |
|
|
127
|
+
| [no-conditional-expect](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-conditional-expect.md) | Disallow calling `expect` conditionally | ✅ | | |
|
|
128
|
+
| [no-conditional-in-test](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-conditional-in-test.md) | Disallow conditional logic in tests | ✅ | | |
|
|
129
|
+
| [no-duplicate-hooks](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-duplicate-hooks.md) | Disallow duplicate setup and teardown hooks | | | |
|
|
130
|
+
| [no-element-handle](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-element-handle.md) | Disallow usage of element handles | ✅ | | 💡 |
|
|
131
|
+
| [no-eval](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-eval.md) | Disallow usage of `page.$eval()` and `page.$$eval()` | ✅ | | |
|
|
132
|
+
| [no-focused-test](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-focused-test.md) | Disallow usage of `.only` annotation | ✅ | | 💡 |
|
|
133
|
+
| [no-force-option](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-force-option.md) | Disallow usage of the `{ force: true }` option | ✅ | | |
|
|
134
|
+
| [no-hooks](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-hooks.md) | Disallow setup and teardown hooks | | | |
|
|
135
|
+
| [no-nested-step](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-nested-step.md) | Disallow nested `test.step()` methods | ✅ | | |
|
|
136
|
+
| [no-networkidle](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-networkidle.md) | Disallow usage of the `networkidle` option | ✅ | | |
|
|
137
|
+
| [no-nth-methods](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-nth-methods.md) | Disallow usage of `first()`, `last()`, and `nth()` methods | | | |
|
|
138
|
+
| [no-page-pause](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-page-pause.md) | Disallow using `page.pause()` | ✅ | | |
|
|
139
|
+
| [no-unsafe-references](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-unsafe-references.md) | Prevent unsafe variable references in `page.evaluate()` | ✅ | 🔧 | |
|
|
140
|
+
| [no-get-by-title](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-get-by-title.md) | Disallow using `getByTitle()` | | 🔧 | |
|
|
141
|
+
| [no-raw-locators](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-raw-locators.md) | Disallow using raw locators | | | |
|
|
142
|
+
| [no-useless-await](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-useless-await.md) | Disallow unnecessary `await`s for Playwright methods | ✅ | 🔧 | |
|
|
143
|
+
| [no-restricted-matchers](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-restricted-matchers.md) | Disallow specific matchers & modifiers | | | |
|
|
144
|
+
| [no-skipped-test](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-skipped-test.md) | Disallow usage of the `.skip` annotation | ✅ | | 💡 |
|
|
145
|
+
| [no-standalone-expect](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-standalone-expect.md) | Disallow using expect outside of `test` blocks | ✅ | | |
|
|
146
|
+
| [no-useless-not](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-useless-not.md) | Disallow usage of `not` matchers when a specific matcher exists | ✅ | 🔧 | |
|
|
147
|
+
| [no-wait-for-selector](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-wait-for-selector.md) | Disallow usage of `page.waitForSelector()` | ✅ | | 💡 |
|
|
148
|
+
| [no-wait-for-timeout](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-wait-for-timeout.md) | Disallow usage of `page.waitForTimeout()` | ✅ | | 💡 |
|
|
149
|
+
| [prefer-comparison-matcher](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-comparison-matcher.md) | Suggest using the built-in comparison matchers | | 🔧 | |
|
|
150
|
+
| [prefer-equality-matcher](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-equality-matcher.md) | Suggest using the built-in equality matchers | | | 💡 |
|
|
151
|
+
| [prefer-hooks-in-order](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-hooks-in-order.md) | Prefer having hooks in a consistent order | | | |
|
|
152
|
+
| [prefer-hooks-on-top](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-hooks-on-top.md) | Suggest having hooks before any test cases | | | |
|
|
153
|
+
| [prefer-strict-equal](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-strict-equal.md) | Suggest using `toStrictEqual()` | | | 💡 |
|
|
154
|
+
| [prefer-lowercase-title](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-lowercase-title.md) | Enforce lowercase test names | | 🔧 | |
|
|
155
|
+
| [prefer-to-be](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-to-be.md) | Suggest using `toBe()` | | 🔧 | |
|
|
156
|
+
| [prefer-to-contain](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-to-contain.md) | Suggest using `toContain()` | | 🔧 | |
|
|
157
|
+
| [prefer-to-have-count](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-to-have-count.md) | Suggest using `toHaveCount()` | | 🔧 | |
|
|
158
|
+
| [prefer-to-have-length](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-to-have-length.md) | Suggest using `toHaveLength()` | | 🔧 | |
|
|
159
|
+
| [prefer-web-first-assertions](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-web-first-assertions.md) | Suggest using web first assertions | ✅ | 🔧 | |
|
|
160
|
+
| [require-hook](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/require-hook.md) | Require setup and teardown code to be within a hook | | | |
|
|
161
|
+
| [require-top-level-describe](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/require-top-level-describe.md) | Require test cases and hooks to be inside a `test.describe` block | | | |
|
|
162
|
+
| [require-soft-assertions](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/require-soft-assertions.md) | Require assertions to use `expect.soft()` | | 🔧 | |
|
|
163
|
+
| [valid-expect](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/valid-expect.md) | Enforce valid `expect()` usage | ✅ | | |
|
|
164
|
+
| [valid-title](https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/valid-title.md) | Enforce valid titles | ✅ | 🔧 | |
|
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,7 @@ declare const _default: {
|
|
|
23
23
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
24
24
|
'no-force-option': eslint.Rule.RuleModule;
|
|
25
25
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
26
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
26
27
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
27
28
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
28
29
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -36,6 +37,8 @@ declare const _default: {
|
|
|
36
37
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
37
38
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
38
39
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
40
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
41
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
39
42
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
40
43
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
41
44
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -45,6 +48,7 @@ declare const _default: {
|
|
|
45
48
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
46
49
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
47
50
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
51
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
48
52
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
49
53
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
50
54
|
'valid-expect': eslint.Rule.RuleModule;
|
|
@@ -81,6 +85,7 @@ declare const _default: {
|
|
|
81
85
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
82
86
|
'no-force-option': eslint.Rule.RuleModule;
|
|
83
87
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
88
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
84
89
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
85
90
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
86
91
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -94,6 +99,8 @@ declare const _default: {
|
|
|
94
99
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
95
100
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
96
101
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
102
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
103
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
97
104
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
98
105
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
99
106
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -103,6 +110,7 @@ declare const _default: {
|
|
|
103
110
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
104
111
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
105
112
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
113
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
106
114
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
107
115
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
108
116
|
'valid-expect': eslint.Rule.RuleModule;
|
|
@@ -235,6 +243,7 @@ declare const _default: {
|
|
|
235
243
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
236
244
|
'no-force-option': eslint.Rule.RuleModule;
|
|
237
245
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
246
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
238
247
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
239
248
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
240
249
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -248,6 +257,8 @@ declare const _default: {
|
|
|
248
257
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
249
258
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
250
259
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
260
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
261
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
251
262
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
252
263
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
253
264
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -257,6 +268,7 @@ declare const _default: {
|
|
|
257
268
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
258
269
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
259
270
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
271
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
260
272
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
261
273
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
262
274
|
'valid-expect': eslint.Rule.RuleModule;
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ declare const _default: {
|
|
|
23
23
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
24
24
|
'no-force-option': eslint.Rule.RuleModule;
|
|
25
25
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
26
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
26
27
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
27
28
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
28
29
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -36,6 +37,8 @@ declare const _default: {
|
|
|
36
37
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
37
38
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
38
39
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
40
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
41
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
39
42
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
40
43
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
41
44
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -45,6 +48,7 @@ declare const _default: {
|
|
|
45
48
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
46
49
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
47
50
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
51
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
48
52
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
49
53
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
50
54
|
'valid-expect': eslint.Rule.RuleModule;
|
|
@@ -81,6 +85,7 @@ declare const _default: {
|
|
|
81
85
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
82
86
|
'no-force-option': eslint.Rule.RuleModule;
|
|
83
87
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
88
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
84
89
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
85
90
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
86
91
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -94,6 +99,8 @@ declare const _default: {
|
|
|
94
99
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
95
100
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
96
101
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
102
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
103
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
97
104
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
98
105
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
99
106
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -103,6 +110,7 @@ declare const _default: {
|
|
|
103
110
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
104
111
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
105
112
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
113
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
106
114
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
107
115
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
108
116
|
'valid-expect': eslint.Rule.RuleModule;
|
|
@@ -235,6 +243,7 @@ declare const _default: {
|
|
|
235
243
|
'no-focused-test': eslint.Rule.RuleModule;
|
|
236
244
|
'no-force-option': eslint.Rule.RuleModule;
|
|
237
245
|
'no-get-by-title': eslint.Rule.RuleModule;
|
|
246
|
+
'no-hooks': eslint.Rule.RuleModule;
|
|
238
247
|
'no-nested-step': eslint.Rule.RuleModule;
|
|
239
248
|
'no-networkidle': eslint.Rule.RuleModule;
|
|
240
249
|
'no-nth-methods': eslint.Rule.RuleModule;
|
|
@@ -248,6 +257,8 @@ declare const _default: {
|
|
|
248
257
|
'no-useless-not': eslint.Rule.RuleModule;
|
|
249
258
|
'no-wait-for-selector': eslint.Rule.RuleModule;
|
|
250
259
|
'no-wait-for-timeout': eslint.Rule.RuleModule;
|
|
260
|
+
'prefer-comparison-matcher': eslint.Rule.RuleModule;
|
|
261
|
+
'prefer-equality-matcher': eslint.Rule.RuleModule;
|
|
251
262
|
'prefer-hooks-in-order': eslint.Rule.RuleModule;
|
|
252
263
|
'prefer-hooks-on-top': eslint.Rule.RuleModule;
|
|
253
264
|
'prefer-lowercase-title': eslint.Rule.RuleModule;
|
|
@@ -257,6 +268,7 @@ declare const _default: {
|
|
|
257
268
|
'prefer-to-have-count': eslint.Rule.RuleModule;
|
|
258
269
|
'prefer-to-have-length': eslint.Rule.RuleModule;
|
|
259
270
|
'prefer-web-first-assertions': eslint.Rule.RuleModule;
|
|
271
|
+
'require-hook': eslint.Rule.RuleModule;
|
|
260
272
|
'require-soft-assertions': eslint.Rule.RuleModule;
|
|
261
273
|
'require-top-level-describe': eslint.Rule.RuleModule;
|
|
262
274
|
'valid-expect': eslint.Rule.RuleModule;
|