Fix type checker, linter and prettier errors to allow backport changes

Change-type: patch
Signed-off-by: Paulo Castro <paulo@balena.io>
This commit is contained in:
Paulo Castro 2019-07-23 12:09:08 +01:00
parent faa558b432
commit b39ab442ba
9 changed files with 12 additions and 34 deletions

View File

@ -51,7 +51,7 @@ execPkg(['--target', 'host', '--output', 'build-bin/balena', 'package.json'])
.then(nativeExtensions => {
console.log(`\nCopying to build-bin:\n${nativeExtensions.join('\n')}`);
return nativeExtensions.map(extPath => {
return nativeExtensions.map((extPath: string) => {
return fs.copy(
extPath,
extPath.replace(

View File

@ -126,9 +126,7 @@ export class MarkdownFileParser {
} else {
reject(
new Error(
`Markdown section not found: title="${title}" file="${
this.mdFilePath
}"`,
`Markdown section not found: title="${title}" file="${this.mdFilePath}"`,
),
);
}

View File

@ -223,9 +223,7 @@ export const add: CommandDefinition<
throw new Error(`Environment value not found for key: ${params.key}`);
} else {
console.info(
`Warning: using ${params.key}=${
params.value
} from host environment`,
`Warning: using ${params.key}=${params.value} from host environment`,
);
}
}

View File

@ -88,9 +88,7 @@ async function getAppOwner(sdk: BalenaSDK, appName: string) {
});
const selected = await selectFromList(
`${
entries.length
} applications found with that name, please select the application you would like to push to`,
`${entries.length} applications found with that name, please select the application you would like to push to`,
entries,
);

View File

@ -212,9 +212,7 @@ export const tunnel: CommandDefinition<Args, Options> = {
)
.then(() => {
logger.logInfo(
` - tunnelling ${localAddress}:${localPort} to ${
device.uuid
}:${remotePort}`,
` - tunnelling ${localAddress}:${localPort} to ${device.uuid}:${remotePort}`,
);
return true;

View File

@ -51,9 +51,7 @@ export async function parseRegistrySecrets(
return registrySecrets;
} catch (error) {
return exitWithExpectedError(
`Error validating registry secrets file "${secretsFilename}":\n${
error.message
}`,
`Error validating registry secrets file "${secretsFilename}":\n${error.message}`,
);
}
}
@ -144,9 +142,7 @@ async function performResolution(
buildTask.buildStream = clonedStream;
if (!buildTask.external && !buildTask.resolved) {
throw new Error(
`Project type for service "${
buildTask.serviceName
}" could not be determined. Missing a Dockerfile?`,
`Project type for service "${buildTask.serviceName}" could not be determined. Missing a Dockerfile?`,
);
}
return buildTask;

View File

@ -92,9 +92,7 @@ async function environmentFromInput(
// exists
if (!(match[1] in ret)) {
logger.logDebug(
`Warning: Cannot find a service with name ${
match[1]
}. Treating the string as part of the environment variable name.`,
`Warning: Cannot find a service with name ${match[1]}. Treating the string as part of the environment variable name.`,
);
match[2] = `${match[1]}:${match[2]}`;
} else {
@ -132,9 +130,7 @@ export async function deployToDevice(opts: DeviceDeployOptions): Promise<void> {
await api.ping();
} catch (e) {
exitWithExpectedError(
`Could not communicate with local mode device at address ${
opts.deviceHost
}`,
`Could not communicate with local mode device at address ${opts.deviceHost}`,
);
}

View File

@ -45,13 +45,9 @@ export function stateToString(state: OperationState) {
switch (state.operation.command) {
case 'copy':
return `${result} ${state.operation.from.path} -> ${
state.operation.to.path
}`;
return `${result} ${state.operation.from.path} -> ${state.operation.to.path}`;
case 'replace':
return `${result} ${state.operation.file.path}, ${
state.operation.copy
} -> ${state.operation.replace}`;
return `${result} ${state.operation.file.path}, ${state.operation.copy} -> ${state.operation.replace}`;
case 'run-script':
return `${result} ${state.operation.script}`;
default:

View File

@ -279,9 +279,7 @@ function createRemoteBuildRequest(
if (response.statusCode >= 100 && response.statusCode < 400) {
if (DEBUG_MODE) {
console.log(
`[debug] received HTTP ${response.statusCode} ${
response.statusMessage
}`,
`[debug] received HTTP ${response.statusCode} ${response.statusMessage}`,
);
}
} else {