lint rule with autofix to disallow the disabled input on button elements

This commit is contained in:
Jens Vannerum
2024-09-18 09:46:38 +02:00
parent 1209b40ac9
commit c249afdb3f
3 changed files with 149 additions and 1 deletions

View File

@@ -10,10 +10,13 @@ import {
bundle,
RuleExports,
} from '../../util/structure';
import * as noDisabledAttr from './no-disabled-attr';
import * as themedComponentUsages from './themed-component-usages';
const index = [
themedComponentUsages,
noDisabledAttr,
] as unknown as RuleExports[];
export = {