@acot/acot-plugin-axe
An axe rule set for acot.
Installation
Install via npm:
$ npm install --save-dev @acot/acot-plugin-axe
Usage
Add @acot/axe
to the plugins
field of the acot config file. then configure the rules you want to use under the rules section.
{
"plugins": ["@acot/axe"],
"rules": {
"@acot/axe/wcag2a": "error"
}
}
You can also enable all the recommended rules for our plugin. Add plugin:@acot/axe/recommended
in extends
:
{
"extends": ["plugin:@acot/axe/recommended"]
}
Supported Rules
Name | Description | :heavy_check_mark: |
---|
@acot/axe/best-practice | Run the rules specified in the "best-practice" tag of Axe. | :heavy_check_mark: |
@acot/axe/experimental | Run the rules specified in the "experimental" tag of Axe. | :heavy_check_mark: |
@acot/axe/wcag21a | Run the rules specified in the "wcag21a" tag of Axe. | :heavy_check_mark: |
@acot/axe/wcag21aa | Run the rules specified in the "wcag21aa" tag of Axe. | :heavy_check_mark: |
@acot/axe/wcag2a | Run the rules specified in the "wcag2a" tag of Axe. | :heavy_check_mark: |
@acot/axe/wcag2aa | Run the rules specified in the "wcag2aa" tag of Axe. | :heavy_check_mark: |
@acot/axe/wcag2aaa | Run the rules specified in the "wcag2aaa" tag of Axe. | :heavy_check_mark: |