- Setup eslint with husky for precommit lint - Fix existing lint errors - Setup linter CI Reviewed-on: cerc-io/laconic-registry-cli#54 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import yargs from 'yargs';
|
|
|
|
export const command = 'authority';
|
|
|
|
export const desc = 'Name authority operations.';
|
|
|
|
exports.builder = (yargs: yargs.Argv) => {
|
|
return yargs.commandDir('authority-cmds')
|
|
.demandCommand();
|
|
};
|