[style] [s]: update linter fixes

This commit is contained in:
Thadeu Cotts
2020-11-24 15:41:01 -03:00
parent af51760dff
commit 646e7e5005

View File

@@ -38,16 +38,15 @@ program
*/
async function promptPath() {
return prompts({
type: 'text',
name: 'path',
message: 'Choose a name to your project',
initial: '',
validate: name => {
type: "text",
name: "path",
message: "Choose a name to your project",
initial: "",
validate: (name) => {
//TODO Method to validate valid path name
return true
}
})
return true;
},
});
}
/**