We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338aec2 commit 9180320Copy full SHA for 9180320
lib/rules/await-async-events.ts
@@ -1,5 +1,4 @@
1
import { AST_NODE_TYPES, ASTUtils } from '@typescript-eslint/utils';
2
-import type { TSESLint, TSESTree } from '@typescript-eslint/utils';
3
4
import { createTestingLibraryRule } from '../create-testing-library-rule';
5
import {
@@ -13,6 +12,8 @@ import {
13
12
} from '../node-utils';
14
import { EVENTS_SIMULATORS } from '../utils';
15
+import type { TSESLint, TSESTree } from '@typescript-eslint/utils';
16
+
17
export const RULE_NAME = 'await-async-events';
18
export type MessageIds = 'awaitAsyncEvent' | 'awaitAsyncEventWrapper';
19
const FIRE_EVENT_NAME = 'fireEvent';
0 commit comments