Skip to content

Commit 163b309

Browse files
committed
fix(add): lint code
1 parent 1162cf5 commit 163b309

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/generators/add-generator.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,14 @@ export default class AddGenerator extends Generator {
162162
this.configuration.config.item = action;
163163
});
164164
} else {
165-
if(action === 'topScope'){
165+
if (action === "topScope") {
166166
return this.prompt([
167-
Input("topScope", "Enter line youwant to add to topScope"),
167+
Input("topScope", "Enter line you want to add to topScope"),
168168
])
169169
.then((topScopeAnswer) => {
170170
this.configuration.config.topScope.push(topScopeAnswer.topScope);
171171
done();
172-
})
172+
});
173173
}
174174
}
175175
const temp: string = action;

0 commit comments

Comments
 (0)