Skip to content

Commit

Permalink
misc(generators): remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
misterdev committed May 2, 2019
1 parent 65824e6 commit 75a2d7c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions packages/generators/add-generator.ts
Expand Up @@ -98,13 +98,11 @@ export default class AddGenerator extends Generator {
webpackOptions: {}
}
};
// TODO wait for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/35115
const { registerPrompt } = this.env.adapter.promptModule;
registerPrompt("autocomplete", autoComplete);
}

public prompting(): Promise<void | {}> {
// TODO wait for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/35115
const done: () => {} = this.async();
let action: string;
const self: this = this;
Expand Down
1 change: 0 additions & 1 deletion packages/generators/init-generator.ts
Expand Up @@ -53,7 +53,6 @@ export default class InitGenerator extends Generator {

// eslint-disable-next-line
public prompting(): any {
// TODO wait for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/35115
const done: () => {} = this.async();
const self: this = this;
let regExpForStyles: string;
Expand Down
1 change: 0 additions & 1 deletion packages/generators/remove-generator.ts
Expand Up @@ -57,7 +57,6 @@ export default class RemoveGenerator extends Generator {
}

public prompting(): Promise<void | {}> {
// TODO wait for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/35115
const done: () => {} = this.async();
let propValue: object | string | boolean;

Expand Down

0 comments on commit 75a2d7c

Please sign in to comment.