From 1ace0450cba1e1a376857e9d79b23252548e3437 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Fri, 9 Mar 2018 23:33:42 +0100 Subject: [PATCH] fix(router): tslint --- packages/core/src/components/router/router.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/components/router/router.tsx b/packages/core/src/components/router/router.tsx index 157d2bea3d6..a29dab738b7 100644 --- a/packages/core/src/components/router/router.tsx +++ b/packages/core/src/components/router/router.tsx @@ -1,10 +1,10 @@ import { Build, Component, Element, Listen, Method, Prop } from '@stencil/core'; import { Config, DomController } from '../../index'; -import { flattenRouterTree, readRoutes, readRedirects } from './utils/parser'; +import { flattenRouterTree, readRedirects, readRoutes } from './utils/parser'; import { readNavState, writeNavState } from './utils/dom'; import { chainToPath, generatePath, parsePath, readPath, writePath } from './utils/path'; import { RouteChain, RouteRedirect } from './utils/interfaces'; -import { routerIDsToChain, routerPathToChain, routeRedirect } from './utils/matching'; +import { routeRedirect, routerIDsToChain, routerPathToChain } from './utils/matching'; @Component({