mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-12-08 00:45:37 +01:00
16 lines
350 B
TypeScript
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
|
|
}
|
|
}
|