aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-16 03:35:47 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-16 03:35:47 +0800
commit71aeb7cddcd2a1faf7a4dc46d828ad8471019f37 (patch)
treed80b49d59eafbb18813d6ddfc1f8a36f97a293ee
parenta8863ac85e49f11b108fe17186728e335a48ec3c (diff)
downloaddexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar.gz
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar.bz2
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar.lz
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar.xz
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.tar.zst
dexon-sol-tools-71aeb7cddcd2a1faf7a4dc46d828ad8471019f37.zip
Linting
-rw-r--r--packages/instant/src/components/zero_ex_instant_container.tsx1
-rw-r--r--packages/instant/src/components/zero_ex_instant_provider.tsx2
-rw-r--r--packages/instant/src/redux/analytics_middleware.ts1
-rw-r--r--packages/instant/src/redux/store.ts2
-rw-r--r--packages/instant/src/util/heap.ts1
5 files changed, 2 insertions, 5 deletions
diff --git a/packages/instant/src/components/zero_ex_instant_container.tsx b/packages/instant/src/components/zero_ex_instant_container.tsx
index 8c3bdc6b6..698bfef17 100644
--- a/packages/instant/src/components/zero_ex_instant_container.tsx
+++ b/packages/instant/src/components/zero_ex_instant_container.tsx
@@ -10,7 +10,6 @@ import { SelectedAssetInstantHeading } from '../containers/selected_asset_instan
import { ColorOption } from '../style/theme';
import { zIndex } from '../style/z_index';
import { OrderProcessState, SlideAnimationState } from '../types';
-import { analytics } from '../util/analytics';
import { CSSReset } from './css_reset';
import { SlidingPanel } from './sliding_panel';
diff --git a/packages/instant/src/components/zero_ex_instant_provider.tsx b/packages/instant/src/components/zero_ex_instant_provider.tsx
index c187f98ee..cfc542a59 100644
--- a/packages/instant/src/components/zero_ex_instant_provider.tsx
+++ b/packages/instant/src/components/zero_ex_instant_provider.tsx
@@ -12,8 +12,8 @@ import { DEFAULT_STATE, DefaultState, State } from '../redux/reducer';
import { store, Store } from '../redux/store';
import { fonts } from '../style/fonts';
import { AccountState, AffiliateInfo, AssetMetaData, Network, OrderSource } from '../types';
-import { assetUtils } from '../util/asset';
import { analytics } from '../util/analytics';
+import { assetUtils } from '../util/asset';
import { errorFlasher } from '../util/error_flasher';
import { gasPriceEstimator } from '../util/gas_price_estimator';
import { Heartbeater } from '../util/heartbeater';
diff --git a/packages/instant/src/redux/analytics_middleware.ts b/packages/instant/src/redux/analytics_middleware.ts
index 01be9b988..2b3ebf529 100644
--- a/packages/instant/src/redux/analytics_middleware.ts
+++ b/packages/instant/src/redux/analytics_middleware.ts
@@ -1,4 +1,3 @@
-import { ObjectMap } from '@0x/types';
import { Web3Wrapper } from '@0x/web3-wrapper';
import * as _ from 'lodash';
import { Middleware } from 'redux';
diff --git a/packages/instant/src/redux/store.ts b/packages/instant/src/redux/store.ts
index 54dfe58c4..11bba3876 100644
--- a/packages/instant/src/redux/store.ts
+++ b/packages/instant/src/redux/store.ts
@@ -1,6 +1,6 @@
import * as _ from 'lodash';
import { applyMiddleware, createStore, Store as ReduxStore } from 'redux';
-import { composeWithDevTools, devToolsEnhancer } from 'redux-devtools-extension/developmentOnly';
+import { composeWithDevTools } from 'redux-devtools-extension/developmentOnly';
import { analyticsMiddleware } from './analytics_middleware';
import { createReducer, State } from './reducer';
diff --git a/packages/instant/src/util/heap.ts b/packages/instant/src/util/heap.ts
index 2f2c221b1..6d3c75ea7 100644
--- a/packages/instant/src/util/heap.ts
+++ b/packages/instant/src/util/heap.ts
@@ -1,5 +1,4 @@
import { ObjectMap } from '@0x/types';
-import { logUtils } from '@0x/utils';
import { HEAP_ANALYTICS_DEVELOPMENT_APP_ID } from '../constants';