Skip to content

Commit 486651e

Browse files
committed
made lint happy
1 parent b49772d commit 486651e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/services/platform-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ export class PlatformService implements IPlatformService {
575575
let platformDir = path.join(this.$projectData.platformsDir, platform);
576576
this.$fs.deleteDirectory(platformDir);
577577
this.$projectDataService.removeProperty(platformData.frameworkPackageName);
578-
this.$npm.uninstall(platformData.frameworkPackageName, {"save-dev": true})
578+
this.$npm.uninstall(platformData.frameworkPackageName, {"save-dev": true});
579579

580580
this.$logger.out(`Platform ${platform} successfully removed.`);
581581
});

lib/services/plugins-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export class PluginsService implements IPluginsService {
277277
let platformData = this.$platformsData.getPlatformData(platform);
278278
this.$projectDataService.initialize(this.$projectData.projectDir);
279279
let version = this.$projectDataService.getValue(platformData.frameworkPackageName, constants.DEV_DEPENDENCIES);
280-
return version
280+
return version;
281281
}
282282

283283
private isPluginDataValidForPlatform(pluginData: IPluginData, platform: string): boolean {

lib/services/project-data-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class ProjectDataService implements IProjectDataService {
2121
public getValue(propertyName: string, key?: string): any {
2222
this.loadProjectFile();
2323
let rootKey: string = this.$staticConfig.CLIENT_NAME_KEY_IN_PROJECT_FILE;
24-
if(key) {
24+
if (key) {
2525
rootKey = key;
2626
}
2727
return this.projectData ? this.projectData[rootKey][propertyName] : null;

0 commit comments

Comments
 (0)