make linter happy

This commit is contained in:
Iuri Matias 2018-07-08 00:46:15 +03:00
parent 99876ef083
commit a5c6c38b5e
4 changed files with 6 additions and 8 deletions

View File

@ -312,7 +312,6 @@ class Embark {
let platform = engine.config.storageConfig.upload.provider; let platform = engine.config.storageConfig.upload.provider;
let cmdPlugin;
async.waterfall([ async.waterfall([
function startServices(callback) { function startServices(callback) {

View File

@ -15,8 +15,8 @@ class IPFS {
this.storageConfig = embark.config.storageConfig; this.storageConfig = embark.config.storageConfig;
this.embark = embark; this.embark = embark;
this.webServerConfig = embark.config.webServerConfig this.webServerConfig = embark.config.webServerConfig;
this.blockchainConfig = embark.config.blockchainConfig this.blockchainConfig = embark.config.blockchainConfig;
this.commandlineDeploy(); this.commandlineDeploy();
this.setServiceCheck(); this.setServiceCheck();

View File

@ -5,7 +5,6 @@ const SwarmModule = require('../swarm');
class Storage { class Storage {
constructor(embark, options){ constructor(embark, options){
const self = this;
this.embark = embark; this.embark = embark;
this.storageConfig = embark.config.storageConfig; this.storageConfig = embark.config.storageConfig;

View File

@ -16,8 +16,8 @@ class Swarm {
this.port = options.port || this.storageConfig.port; this.port = options.port || this.storageConfig.port;
this.embark = embark; this.embark = embark;
this.webServerConfig = embark.config.webServerConfig, this.webServerConfig = embark.config.webServerConfig;
this.blockchainConfig = embark.config.blockchainConfig this.blockchainConfig = embark.config.blockchainConfig;
this.providerUrl = utils.buildUrl(options.protocol || options.storageConfig.upload.protocol, options.host || options.storageConfig.upload.host, options.port || options.storageConfig.upload.port); this.providerUrl = utils.buildUrl(options.protocol || options.storageConfig.upload.protocol, options.host || options.storageConfig.upload.host, options.port || options.storageConfig.upload.port);