testaro 28.1.2 → 28.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/procs/standardize.js +17 -0
package/package.json
CHANGED
package/procs/standardize.js
CHANGED
|
@@ -112,6 +112,23 @@ const aslintData = {
|
|
|
112
112
|
'page-title': [
|
|
113
113
|
['empty', 'page-titleN'],
|
|
114
114
|
['not identify', 'page-titleU']
|
|
115
|
+
],
|
|
116
|
+
'aria-labelledby-association': [
|
|
117
|
+
['exist', 'aria-labelledby-associationN'],
|
|
118
|
+
['empty', 'aria-labelledby-associationE']
|
|
119
|
+
],
|
|
120
|
+
'html-lang-attr': [
|
|
121
|
+
['parameters', 'html-lang-attrP'],
|
|
122
|
+
['nothing', 'html-lang-attrN'],
|
|
123
|
+
['empty', 'html-lang-attrE']
|
|
124
|
+
],
|
|
125
|
+
'missing-label': [
|
|
126
|
+
['associated', 'missing-labelI'],
|
|
127
|
+
['defined', 'missing-labelN'],
|
|
128
|
+
['multiple labels', 'missing-labelM']
|
|
129
|
+
],
|
|
130
|
+
'orientation': [
|
|
131
|
+
['loaded', 'orientationT']
|
|
115
132
|
]
|
|
116
133
|
};
|
|
117
134
|
// Converts issue instances at an axe certainty level.
|