silverwind

Results 266 issues of silverwind

* **Version**: v14.8.0 * **Platform**: Windows 10 1809 * **Subsystem**: process, path ### What steps will reproduce the bug? ````bash cd c: mkdir folder mklink /D link folder cd link...

windows
path
process
libuv

Use [inset](https://developer.mozilla.org/en-US/docs/Web/CSS/inset) shorthand instead of longhands. There may be more cases but these ones I was able to definitely identify.

lgtm/done
size/S

Percentage-based `border-radius` [creates undesirable ellipse](https://jsfiddle.net/silverwind/j9ko5wnt/4/) on non-square content. Instead, use pixel value and use same wording `full` like tailwind does, but increast to 99999px over their 9999px.

lgtm/done
size/S
modifies/js
backport/v1.22

Fixes https://github.com/go-gitea/gitea/issues/30821 and restyles the release list. Desktop: Mobile:

topic/ui
lgtm/done
size/M
modifies/go
modifies/templates
backport/v1.22

### Description https://try.gitea.io/silverwind/symlink-test/issues/4#issuecomment-162691 It seems mermaid gantt diagrams render differently based on browser viewport size (zoom or resize browser window) even thought the rendered area does not change. We should...

type/bug
topic/ui

I noticed that https://github.com/WICG/directory-upload/commit/37d46d1b151a50666e74bb01064c563a37b94a27#diff-01b4f8e804865d25d17f3ea9bd7c417fL143 changed the `filename` field to include a leading slash. Is this change intentional? Uploads from `` don't include a leading slash in this field, and I...

## :warning: BREAKING :warning: MSSQL 2017 is the oldest version for which official docker containers [exist](https://hub.docker.com/_/microsoft-mssql-server) and we are [testing against it](https://github.com/go-gitea/gitea/blob/26ae5922348d2dbaf2161bbd6ac79b2aa455e5f0/.github/workflows/pull-db-tests.yml#L200). This raises the documented minimum version to that...

lgtm/need 1
pr/breaking
size/XS
modifies/docs

``` ┌───────────────┬──────────────────────────────────────────────────────────────┐ │ High │ Regular Expression Denial of Service │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Package │ url-regex │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Patched in │ No patch available │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Dependency of...

type/usage
tag/next-release/nightly
type/upstream

### Description Like [`no-array-push-push`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-array-push-push.md) but for [`DOMTokenList.add`](https://developer.mozilla.org/en-US/docs/Web/API/DOMTokenList/add). ### Fail ```js el.classList.add('foo'); el.classList.add('bar', 'baz'); ``` ### Pass ```js el.classList.add('foo', 'bar', 'baz'); ``` ### Additional Info Maybe also name it `no-classlist-add-add` because...

help wanted
new rule

Names return values are useful for documentation, but problematic when those variables are actually used because of mutation. I would propose a option to the linter to allow naming return...