UNPKG

firescript

Version:
12 lines (9 loc) 265 B
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 ;)') })