Skip to content

Commit

Permalink
chore: make ci happy
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Sep 29, 2024
1 parent afad23e commit 5fadfc3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/rules/namespace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ export = createRule<[Options], MessageId>({

// same as above, but does not add names to local map
ExportNamespaceSpecifier(namespace) {
const declaration = importDeclaration(context, namespace as TSESTree.ImportDefaultSpecifier)
const declaration = importDeclaration(
context,
namespace as TSESTree.ImportDefaultSpecifier,
)

const imports = ExportMap.get(declaration.source.value, context)
if (imports == null) {
Expand Down
3 changes: 2 additions & 1 deletion src/utils/import-declaration.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { AST_NODE_TYPES, type TSESTree } from '@typescript-eslint/utils'
import { AST_NODE_TYPES } from '@typescript-eslint/utils'
import type { TSESTree } from '@typescript-eslint/utils'

import type { RuleContext } from '../types'

Expand Down

0 comments on commit 5fadfc3

Please sign in to comment.