silverwind
silverwind
**Description:** Tools like `gopls check ` can output line column ranges but the [matcher](https://github.com/actions/setup-go/blob/cdcb36043654635271a94b9a6d1392de5bb323a7/matchers.json#L7) installed by this action can not match them. This action can not match these column ranges...
@mikeal: same thing as in https://github.com/nodejs/nodejs.org/commit/fb827b08f19c220ac25b23079c2eb02fb9745940.
### Description [CSS.escape](https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape_static) should always be used when interpolating arbritrary variables into a CSS selector to ensure correct escaping. ### Fail ```js document.querySelector(`#${id}`); ``` ```js el.querySelectorAll(`a[href^="#${hash}"]`); ``` ### Pass ```js...
Currently this application [is hardcoded](https://github.com/Icinga/icingadb/blob/0e9810c1e7d5b619fec48849698ff14a0526176f/pkg/config/redis.go#L51) to use Redis DB index 0 which can lead to conflicts in redis when other applications also use DB 0. It should be made configurable...
When attempting to install `curl` inside the docker image, a version conflict between `curl` and `libcurl` arises which causes all curl requests to fail with `An unknown option was passed`....
For cases where one does not generate HTML, handlebars.js provides a useful `noEscape` that disables escaping in double-curly blocks. I'd love to have this option in this module too.
On my machine, it takes over 400ms to import `pybars`: ```console $ PYTHONPROFILEIMPORTTIME=1 python -c 'import pybars' |& grep pybars import time: 209 | 209 | pybars._templates import time: 203090...
JSON schema has `readOnly` and `writeOnly` to specify static read/write access to a property but sometimes it's useful to have immutable properties that can only be written once and only...
### 🚀 Feature Request The [colorScheme](https://playwright.dev/docs/api/class-testoptions#test-options-color-scheme) setting should provide a option to have it follow the current OS setting, e.g. emulate dark when OS prefers dark, and light when OS...
https://www.w3.org/TR/css-syntax-3/#ident-token-diagram Currently, no error is raised: ```js > (await import("csstree-validator")).validate('1n {color: red}') [] ```