aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/README.md
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 12:08:32 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 12:08:32 +0800
commit2e704ac01a077b0c73288aaa53c9cf66c73e27f1 (patch)
tree091b2c8314ec2784f1ad508964999f2eed9f85f6 /packages/pipeline/README.md
parent00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe (diff)
downloaddexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar.gz
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar.bz2
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar.lz
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar.xz
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.tar.zst
dexon-0x-contracts-2e704ac01a077b0c73288aaa53c9cf66c73e27f1.zip
Fix prettier
Diffstat (limited to 'packages/pipeline/README.md')
-rw-r--r--packages/pipeline/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/pipeline/README.md b/packages/pipeline/README.md
index 0f4abd935..794488cac 100644
--- a/packages/pipeline/README.md
+++ b/packages/pipeline/README.md
@@ -150,17 +150,17 @@ set the`ZEROEX_DATA_PIPELINE_DB_URL` environment variable to a valid
#### Additional guidelines and tips:
-- Table names should be plural and separated by underscores (e.g.,
+* Table names should be plural and separated by underscores (e.g.,
`exchange_fill_events`).
-- Any table which contains data which comes directly from a third-party source
+* Any table which contains data which comes directly from a third-party source
should be namespaced in the `raw` PostgreSQL schema.
-- Column names in the database should be separated by underscores (e.g.,
+* Column names in the database should be separated by underscores (e.g.,
`maker_asset_type`).
-- Field names in entity classes (like any other fields in TypeScript) should
+* Field names in entity classes (like any other fields in TypeScript) should
be camel-cased (e.g., `makerAssetType`).
-- All timestamps should be stored as milliseconds since the Unix Epoch.
-- Use the `BigNumber` type for TypeScript code which deals with 256-bit
+* All timestamps should be stored as milliseconds since the Unix Epoch.
+* Use the `BigNumber` type for TypeScript code which deals with 256-bit
numbers from smart contracts or for any case where we are dealing with large
floating point numbers.
-- [TypeORM documentation](http://typeorm.io/#/) is pretty robust and can be a
+* [TypeORM documentation](http://typeorm.io/#/) is pretty robust and can be a
helpful resource.