test()

in src/rules/tabindex-no-positive.js [24:27]


    test(_, props) {
        const tabIndex = hasProp(props, 'tabIndex');
        return !tabIndex || props.tabIndex <= 0;
    }