Skip to content

Commit

Permalink
chore: random lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
motiz88 committed Aug 1, 2020
1 parent 5fdd8f1 commit 9558164
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utils/resolveImportedValue.js
Expand Up @@ -7,7 +7,7 @@
* @flow
*/

import {namedTypes as t, NodePath} from '@motiz88/ast-types';
import { namedTypes as t, NodePath } from '@motiz88/ast-types';
import { traverseShallow } from './traverse';
import resolve from 'resolve';
import { dirname } from 'path';
Expand Down
7 changes: 6 additions & 1 deletion src/utils/resolveObjectKeysToArray.js
Expand Up @@ -7,7 +7,12 @@
* @flow
*/

import { ASTNode, NodePath, builders, namedTypes as t } from '@motiz88/ast-types';
import {
ASTNode,
NodePath,
builders,
namedTypes as t,
} from '@motiz88/ast-types';
import resolveToValue from './resolveToValue';

function isObjectKeysCall(node: ASTNode): boolean {
Expand Down
7 changes: 6 additions & 1 deletion src/utils/resolveObjectValuesToArray.js
Expand Up @@ -7,7 +7,12 @@
* @flow
*/

import { ASTNode, NodePath, builders, namedTypes as t } from '@motiz88/ast-types';
import {
ASTNode,
NodePath,
builders,
namedTypes as t,
} from '@motiz88/ast-types';
import resolveToValue from './resolveToValue';

type ObjectPropMap = {
Expand Down

0 comments on commit 9558164

Please sign in to comment.