You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* string(optional) sets the brand string - default "axe"
15
15
*/
16
-
brand?: string,
16
+
brand?: string;
17
17
/**
18
18
* string(optional) sets the application string - default "axeAPI"
19
19
*/
20
-
application?: string
21
-
},
20
+
application?: string;
21
+
};
22
22
/**
23
23
* Used to set the output format that the axe.run function will pass to the callback function
24
24
*/
25
-
reporter?: string,
25
+
reporter?: string;
26
26
/**
27
27
* Used to add checks to the list of checks used by rules, or to override the properties of existing checks
28
28
*/
29
-
checks?: any,
29
+
checks?: any;
30
30
/**
31
31
* Used to add rules to the existing set of rules, or to override the properties of existing rules
32
32
*/
33
-
rules?: any,
33
+
rules?: any;
34
34
/**
35
35
* A locale object to apply (at runtime) to all rules and checks, in the same shape as /locales/*.json.
36
36
*/
37
-
locale?: any,
37
+
locale?: any;
38
38
/**
39
39
* Set the compatible version of a custom rule with the current axe version. Compatible versions are all patch and minor updates that are the same as, or newer than those of the `axeVersion` property
40
40
*/
41
-
axeVersion?: string
41
+
axeVersion?: string;
42
42
}
43
43
44
44
exportinterfaceAxeRunOptions{
45
45
/**
46
46
* Limit which rules are executed, based on names or tags
0 commit comments