Fix linter issuesx

This commit is contained in:
Fabio Berger 2018-03-14 14:49:09 +01:00
parent 28abcef1ca
commit 83ae7ba08d
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export const postpublishUtils = {
assets: _.get(postpublishConfig, 'assets', []),
docPublishConfigs: {
fileIncludes: [
...(tsConfigJSON as any).include,
...tsConfigJSON.include,
..._.get(postpublishConfig, 'docPublishConfigs.extraFileIncludes', []),
],
s3BucketPath: _.get(postpublishConfig, 'docPublishConfigs.s3BucketPath'),

View File

@ -144,5 +144,6 @@ declare module 'ganache-core' {
networkId: number;
mnemonic: string;
}
// tslint:disable-next-line:completed-docs
export function provider(opts: GanacheOpts): Web3.Provider;
}