test()

in src/rules/label-has-for.js [10:14]


    test(tagName, props) {
        const hidden = hiddenFromAT(props);
        const hasfor = typeof props.htmlFor === 'string';
        return hidden || hasfor;
    }