const { Command } = require('supercmd')
const command = new Command()
module.exports.command = command
command
.cmd('lint [file]')
.description('Lint current working dir')
.action((ctx, file) => {
console.log('No linting rules implemented yet ;)')
})