From a6dc2f5a91228c5ed2c554633d0e2d4a80948ad2 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 18 Jun 2018 16:04:05 -0400 Subject: [PATCH] fix linting --- templates/boilerplate/config/namesystem.js | 4 ++-- templates/boilerplate/config/storage.js | 9 +++++++-- templates/demo/config/namesystem.js | 2 +- templates/demo/config/storage.js | 9 +++++++-- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/templates/boilerplate/config/namesystem.js b/templates/boilerplate/config/namesystem.js index 17ac6de4..10e20d6b 100644 --- a/templates/boilerplate/config/namesystem.js +++ b/templates/boilerplate/config/namesystem.js @@ -1,6 +1,6 @@ module.exports = { - default: { + default: { available_providers: ["ens"], provider: "ens" } -} +}; diff --git a/templates/boilerplate/config/storage.js b/templates/boilerplate/config/storage.js index 1603bead..f8ea68be 100644 --- a/templates/boilerplate/config/storage.js +++ b/templates/boilerplate/config/storage.js @@ -9,7 +9,12 @@ module.exports = { port: 5001 }, dappConnection: [ - {provider: "ipfs", host: "localhost", port: 5001, getUrl: "http://localhost:8080/ipfs/"} + { + provider: "ipfs", + host: "localhost", + port: 5001, + getUrl: "http://localhost:8080/ipfs/" + } ] }, development: { @@ -21,4 +26,4 @@ module.exports = { getUrl: "http://localhost:8080/ipfs/" } } -} +}; diff --git a/templates/demo/config/namesystem.js b/templates/demo/config/namesystem.js index d4fa9279..10e20d6b 100644 --- a/templates/demo/config/namesystem.js +++ b/templates/demo/config/namesystem.js @@ -3,4 +3,4 @@ module.exports = { available_providers: ["ens"], provider: "ens" } -} +}; diff --git a/templates/demo/config/storage.js b/templates/demo/config/storage.js index 1603bead..416184e5 100644 --- a/templates/demo/config/storage.js +++ b/templates/demo/config/storage.js @@ -9,7 +9,12 @@ module.exports = { port: 5001 }, dappConnection: [ - {provider: "ipfs", host: "localhost", port: 5001, getUrl: "http://localhost:8080/ipfs/"} + { + provider:"ipfs", + host: "localhost", + port: 5001, + getUrl: "http://localhost:8080/ipfs/" + } ] }, development: { @@ -21,4 +26,4 @@ module.exports = { getUrl: "http://localhost:8080/ipfs/" } } -} +};