We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9356525 commit 6d2002eCopy full SHA for 6d2002e
w3c-html-validator.ts
@@ -7,8 +7,6 @@ withProxy(request);
7
8
export type ValidatorOptions = {
9
output?: string,
10
- doctype?: string,
11
- charset?: string,
12
proxy?: string,
13
callback?: (response: unknown, info?: unknown) => void,
14
file: string,
@@ -28,8 +26,6 @@ const w3cHtmlValidator = {
28
26
validate(options: ValidatorOptions): void {
29
27
const defaults = {
30
output: 'json',
31
- doctype: null,
32
- charset: null,
33
proxy: null,
34
callback: (response: unknown) => console.log(response),
35
};
0 commit comments