Problem We’ve developed an ESLint rule to determine if a tag name used inside the Protractor’s by.tagName() locator is valid. […]
Tag: eslint
React setState function in useEffect
Problem I’m toggling a state when the browser is resized: const [expanded, setExpanded] = useState(true) useEffect(() => { const listener […]
Circular dependency in utility functions
Problem Some Background I’ve been developing an ESLint plugin to catch Protractor/Jasmine specific code style violations. In Protractor, there are […]