aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-14 22:43:04 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-14 22:47:03 +0800
commit4391f9913e9bd3e196a66ff73992ccd0a7a2802e (patch)
treed89fddcec321d2cee14fa2e3e7155076a1cc18f3 /packages
parent28c409fc6d635ee8ed1430d97d9bbdde2f613e37 (diff)
downloaddexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar.gz
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar.bz2
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar.lz
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar.xz
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.tar.zst
dexon-sol-tools-4391f9913e9bd3e196a66ff73992ccd0a7a2802e.zip
Fix linter errors
Diffstat (limited to 'packages')
-rw-r--r--packages/0x.js/src/0x.ts2
-rw-r--r--packages/0x.js/test/token_registry_wrapper_test.ts2
-rw-r--r--packages/0x.js/test/token_wrapper_test.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/0x.js/src/0x.ts b/packages/0x.js/src/0x.ts
index e93b5e615..83d470845 100644
--- a/packages/0x.js/src/0x.ts
+++ b/packages/0x.js/src/0x.ts
@@ -1,5 +1,5 @@
import {schemas, SchemaValidator} from '@0xproject/json-schemas';
-import {intervalUtils, bigNumberConfigs} from '@0xproject/utils';
+import {bigNumberConfigs, intervalUtils} from '@0xproject/utils';
import {Web3Wrapper} from '@0xproject/web3-wrapper';
import BigNumber from 'bignumber.js';
import * as ethUtil from 'ethereumjs-util';
diff --git a/packages/0x.js/test/token_registry_wrapper_test.ts b/packages/0x.js/test/token_registry_wrapper_test.ts
index aaf4fa448..533384450 100644
--- a/packages/0x.js/test/token_registry_wrapper_test.ts
+++ b/packages/0x.js/test/token_registry_wrapper_test.ts
@@ -1,5 +1,5 @@
-import {schemas, SchemaValidator} from '@0xproject/json-schemas';
import {BlockchainLifecycle} from '@0xproject/dev-utils';
+import {schemas, SchemaValidator} from '@0xproject/json-schemas';
import * as chai from 'chai';
import * as _ from 'lodash';
import 'mocha';
diff --git a/packages/0x.js/test/token_wrapper_test.ts b/packages/0x.js/test/token_wrapper_test.ts
index 2500168f9..1ee2b25fc 100644
--- a/packages/0x.js/test/token_wrapper_test.ts
+++ b/packages/0x.js/test/token_wrapper_test.ts
@@ -1,5 +1,5 @@
-import {promisify} from '@0xproject/utils';
import {BlockchainLifecycle} from '@0xproject/dev-utils';
+import {promisify} from '@0xproject/utils';
import {Web3Wrapper} from '@0xproject/web3-wrapper';
import BigNumber from 'bignumber.js';
import * as chai from 'chai';