Dan Gowans

Results 7 issues of Dan Gowans

This is a **improvement**. ### Proposed solution The `.image` class adds display, height, and width styles to child `img` elements. If those styles get applied to child `svg` elements, inline...

The City of Sault Ste. Marie has made a simple TypeScript/JavaScript wrapper for posting to an ntfy server using Node.js. https://github.com/cityssm/node-ntfy-publish

### Problem ```javascript export { default } from 'prettier-config-cityssm' ``` In this case, `cityssm` is flagged as a spelling error. It's true it's not a word, but I feel like...

enhancement
new issue

This is an **improvement**, maybe a **bug fix**. Given the code below, when hovering over the corresponding label, the icon next to the select does not change to a brighter...

Avoid selecting an entire `NodeList` when only the first item is desired. ## Fail ```js document.querySelectorAll("form")[0].addEventListener("submit", submitFunction); ``` ## Pass ```js document.querySelector("form").addEventListener("submit", submitFunction); ```

help wanted
new rule

There are known vulnerabilities with xmldom. Updates to the package are being done in the @xmldom/xmldom package. This PR updates the example in the README file to reference the maintained...