Skip to content

Commit

Permalink
fixed: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Aug 25, 2023
1 parent 5e4a08c commit 2570a3b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/generators/template/utils.js
Expand Up @@ -30,8 +30,6 @@ import {
isLiteral,
isMemberExpression,
isObjectExpression,
isObjectProperty,
isProperty,
} from '../../utils/ast-nodes-checks.js'
import { nullNode, simplePropertyNode } from '../../utils/custom-ast-nodes.js'
import addLinesOffset from '../../utils/add-lines-offset.js'
Expand Down
2 changes: 0 additions & 2 deletions src/utils/ast-nodes-checks.js
Expand Up @@ -20,8 +20,6 @@ export const isSequenceExpression = (n) =>
export const isExportDefaultStatement = (n) =>
namedTypes.ExportDefaultDeclaration.check(n)
export const isMemberExpression = (n) => namedTypes.MemberExpression.check(n)
export const isObjectProperty = (n) => namedTypes.ObjectProperty.check(n)
export const isProperty = (n) => namedTypes.Property.check(n)
export const isImportDeclaration = (n) => namedTypes.ImportDeclaration.check(n)
export const isTypeAliasDeclaration = (n) =>
namedTypes.TSTypeAliasDeclaration.check(n)
Expand Down

0 comments on commit 2570a3b

Please sign in to comment.