[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() { async function promptPath() {
return prompts({ return prompts({
type: 'text', type: "text",
name: 'path', name: "path",
message: 'Choose a name to your project', message: "Choose a name to your project",
initial: '', initial: "",
validate: name => { validate: (name) => {
//TODO Method to validate valid path name //TODO Method to validate valid path name
return true return true;
} },
}) });
} }
/** /**