skyclouds2001

Results 114 comments of skyclouds2001

this is node.js's `crypto` module's `randomUUID()` method, they are completely different method but it is worth mentioning the similar method, which is already done

the `randomUUID()` of `crypto` module is supported in v15.6.0 and v14.17.0, but the `randomUUID()` of Web `Crypto` class is supported in v16.7.0

also notice that csstree use mdn-data as the source of css features, so for syntax-related issue, instead of add a patch in csstree, it is better to direct to contribute...

> > Can you think of other ways, particularly documentation ones, that will make customising syntax more approachable? > > [@jeddy3](https://github.com/jeddy3) To be honest, I avoid customizing linter/fixer tools as...

可以通过把 `[ ]` 改为 `[x]` 来表示已完成任务

Also include `ServiceWorkerRegistration.showNotification()`

I read https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config and confirmed this way can resolve this issue at present: ```js import path from 'node:path' import url from 'node:url' import { FlatCompat } from '@eslint/eslintrc' export default...

another solution is: ```js import path from 'node:path' import url from 'node:url' import { FlatCompat } from '@eslint/eslintrc' export default [ ...(new FlatCompat({ baseDirectory: path.dirname(url.fileURLToPath(import.meta.url)), }).config({ extends: [ 'eslint-config-standard', ],...

Now though the documentation indicates that this repo has supported ESLint flag config, but in fact, this still existed some issues

> Currently, we have our own overrides as below: > > [stylelint/lib/rules/declaration-property-value-no-unknown/index.mjs](https://github.com/stylelint/stylelint/blob/b4bfe38e2c390ad8d17bbba2d25d56c6bc74473e/lib/rules/declaration-property-value-no-unknown/index.mjs#L69-L76) > > Lines 69 to 76 in [b4bfe38](/stylelint/stylelint/commit/b4bfe38e2c390ad8d17bbba2d25d56c6bc74473e) > > const propertiesSyntax = { > 'text-box-edge': > 'auto...