Skip to content

Commit

Permalink
Satisfy linter white space rules
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <tmader@redhat.com>
  • Loading branch information
tsmaeder committed Jul 15, 2020
1 parent 3fa67cc commit 0afa10f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/task/src/browser/task-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export class TaskService implements TaskConfigurationClient {
/**
* Returns an array of the task configurations configured in tasks.json and provided by the extensions.
* @param token The cache token for the user interaction in progress
*/
*/
async getTasks(token: number): Promise<TaskConfiguration[]> {
const configuredTasks = await this.getConfiguredTasks(token);
const providedTasks = await this.getProvidedTasks(token);
Expand All @@ -358,10 +358,10 @@ export class TaskService implements TaskConfigurationClient {
return [...configuredTasks, ...notCustomizedProvidedTasks];
}

/**
/**
* Returns an array of the valid task configurations which are configured in tasks.json files
* @param token The cache token for the user interaction in progress
*
*
*/
async getConfiguredTasks(token: number): Promise<TaskConfiguration[]> {
const invalidTaskConfig = this.taskConfigurations.getInvalidTaskConfigurations()[0];
Expand Down Expand Up @@ -397,7 +397,7 @@ export class TaskService implements TaskConfigurationClient {
return validTaskConfigs;
}

/**
/**
* Returns an array of the task configurations which are provided by the extensions.
* @param token The cache token for the user interaction in progress
*/
Expand Down Expand Up @@ -504,7 +504,7 @@ export class TaskService implements TaskConfigurationClient {
* It looks for configured and detected tasks.
* @param token The cache token for the user interaction in progress
* @param source The source for configured tasks
* @param taskLabel The label to look for
* @param taskLabel The label to look for
* @param scope The scope where to look for tasks
*/
async run(token: number, source: string, taskLabel: string, scope: TaskConfigurationScope): Promise<TaskInfo | undefined> {
Expand Down Expand Up @@ -828,7 +828,7 @@ export class TaskService implements TaskConfigurationClient {

/**
* Runs the first task with the given label.
*
*
* @param token The cache token for the user interaction in progress
* @param taskLabel The label of the task to be executed
*/
Expand All @@ -844,7 +844,7 @@ export class TaskService implements TaskConfigurationClient {

/**
* Runs a task identified by the given identifier, but only if found in the give workspace folder
*
*
* @param token The cache token for the user interaction in progress
* @param workspaceFolderUri The folder to restrict the search to
* @param taskIdentifier The identifier to look for
Expand Down Expand Up @@ -1106,7 +1106,7 @@ export class TaskService implements TaskConfigurationClient {

/**
* Opens an editor to configure the given task.
*
*
* @param token The cache token for the user interaction in progress
* @param task The task to configure
*/
Expand Down

0 comments on commit 0afa10f

Please sign in to comment.