Skip to content

Commit

Permalink
Remove unused doctype and charset options
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jun 11, 2021
1 parent 9356525 commit 6d2002e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions w3c-html-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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),
};
Expand Down

0 comments on commit 6d2002e

Please sign in to comment.