Skip to content

Commit 6d2002e

Browse files
committed
Remove unused doctype and charset options
thomasdavis#26
1 parent 9356525 commit 6d2002e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

w3c-html-validator.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ withProxy(request);
77

88
export type ValidatorOptions = {
99
output?: string,
10-
doctype?: string,
11-
charset?: string,
1210
proxy?: string,
1311
callback?: (response: unknown, info?: unknown) => void,
1412
file: string,
@@ -28,8 +26,6 @@ const w3cHtmlValidator = {
2826
validate(options: ValidatorOptions): void {
2927
const defaults = {
3028
output: 'json',
31-
doctype: null,
32-
charset: null,
3329
proxy: null,
3430
callback: (response: unknown) => console.log(response),
3531
};

0 commit comments

Comments
 (0)