diff --git a/w3c-html-validator.ts b/w3c-html-validator.ts index 9b65726..82f5b6d 100644 --- a/w3c-html-validator.ts +++ b/w3c-html-validator.ts @@ -7,8 +7,6 @@ withProxy(request); export type ValidatorOptions = { output?: string, - doctype?: string, - charset?: string, proxy?: string, callback?: (response: unknown, info?: unknown) => void, file: string, @@ -28,8 +26,6 @@ const w3cHtmlValidator = { validate(options: ValidatorOptions): void { const defaults = { output: 'json', - doctype: null, - charset: null, proxy: null, callback: (response: unknown) => console.log(response), };