silverwind
silverwind
1. Calling [`MutationObserver#observe`](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/observe) without `options` is invalid and raises a `TypeError`. 2. When custom elements are rendered with Vue, I noticed the children are available during `connectedCallback` and the suggested...
I see you commented about it here. Is it still neccesary to carry it as a dependency? It's not needed at runtime but every consumer of the module will be...
The docs currently seem to recommend adding `.d.ts` files: - https://jest-extended.jestcommunity.dev/docs/getting-started/typescript - https://jest-extended.jestcommunity.dev/docs/getting-started/setup#vitest-typescript-types-setup I had success by just adding to `compilerOptions.types` in `tsconfig.json`. Maybe that's all that is needed? ```json5...
### Is there an existing issue for this? - [X] I have searched the existing issues ### What problem does this feature solve? Chroma's language metadata is somewhat lacking. ###...
It only prints a single `\n`: ```bash $ go run github.com/editorconfig-checker/editorconfig-checker/v2/cmd/editorconfig-checker@latest -version | xxd 00000000: 0a . ```
Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color > #RGB // The three-value syntax #RGBA // The four-value syntax #RRGGBB // The six-value syntax #RRGGBBAA // The eight-value syntax
I would like to allow certain functions like [`color-mix`](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix), but it seems the current `ignoreFunction` option is not flexible enough. This should be flagged: ```css color: rgb(255 0 0); ```...
I think it'd make sense to define everything in `process.env` by default, so instead of ````js /// #if env == 'PRODUCTION' /// #if PRODUCTION ```` one can do a more...
- [x] I've searched the [issues](https://github.com/djlint/djLint/issues) - [x] I've read the [docs](https://djlint.com) ## Feature Request A new rule that each [`for`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#attributes) attribute on `` has a exactly one matching `id`...
`gopls check` operates on multiple files, so I made the help text reflect that fact.