Skip to content

Commit f2ff5ab

Browse files
authored
chore(cli): fix lint errors (#2479)
1 parent 9c589a3 commit f2ff5ab

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

cli/src/android/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Config } from '../config';
2-
import { buildXmlElement, checkPlatformVersions, logFatal, resolveNode, runTask } from '../common';
2+
import { checkPlatformVersions, logFatal, resolveNode, runTask } from '../common';
33
import { getAndroidPlugins } from './common';
44
import { checkAndInstallDependencies, handleCordovaPluginsJS, writeCordovaAndroidManifest } from '../cordova';
55
import { convertToUnixPath, copySync, readFileAsync, removeSync, writeFileAsync} from '../util/fs';

cli/src/definitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface ExternalConfig {
2626
cordova?: any;
2727
server?: {
2828
cleartext?: boolean;
29-
}
29+
};
3030
}
3131

3232
export interface AppPluginsConfig {

cli/src/tasks/new-plugin.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import { dirname, join } from 'path';
99
import { isInteractive } from '../util/term';
1010

1111
interface NewPluginAnswers {
12-
name: string
13-
domain: string
14-
className: string
15-
description: string
16-
git: string
17-
author: string
18-
license: string
19-
confirm: boolean
12+
name: string;
13+
domain: string;
14+
className: string;
15+
description: string;
16+
git: string;
17+
author: string;
18+
license: string;
19+
confirm: boolean;
2020
}
2121

2222
export async function newPluginCommand(config: Config) {
@@ -41,7 +41,7 @@ export async function newPlugin(config: Config) {
4141
return false;
4242
}
4343
return true;
44-
}
44+
};
4545
const answers: NewPluginAnswers = await inquirer.prompt([
4646
{
4747
type: 'input',

0 commit comments

Comments
 (0)