Swapped tslint to eslint and fixed files

This commit is contained in:
Arwid Thornström
2023-02-03 12:48:29 +01:00
committed by GitHub
parent 258e0b2dde
commit a7da247cf4
15 changed files with 1136 additions and 386 deletions
+4 -6
View File
@@ -1,13 +1,11 @@
import { GluegunToolbox } from 'gluegun'
import { GluegunToolbox } from 'gluegun';
// add your CLI-specific functionality here, which will then be accessible
// to your commands
module.exports = (toolbox: GluegunToolbox) => {
toolbox.foo = () => {
toolbox.print.info('called foo extension')
}
toolbox.print.info('called foo extension');
};
// enable this if you want to read configuration in from
// the current folder's package.json (in a "pwcli" property),
@@ -16,4 +14,4 @@ module.exports = (toolbox: GluegunToolbox) => {
// ...toolbox.config,
// ...toolbox.config.loadConfig("pwcli", process.cwd())
// }
}
};