1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2025-05-21 23:21:29 +02:00
Files
html-w3c-validator/src/HTMLValidatorCommand.ts
2022-01-06 19:52:25 +01:00

16 lines
350 B
TypeScript

import { Command } from 'clipanion'
// const CURRENT_DIRECTORY = process.cwd()
export class HTMLValidatorCommand extends Command {
static usage = {
description:
'CLI for validating multiple html pages using <https://validator.w3.org/>.'
}
async execute(): Promise<number> {
console.log('html-w3c-validator')
return 0
}
}