fregante
fregante
1. > Worker APIs should use `self` 2. > I think `self` was chosen because there's no `window`, but `globalThis` should still be preferred there I think. > > -...
### Clear and concise description of the problem I'd like to use Prettier (externally) and this config for everything else. The suggestion is generally to use _either_ `stylistic` _or_ prettier,...
To create globals available on `globalThis`, you must use `var`: https://stackoverflow.com/a/56984941/288906 What do you think about adding an exclusion for files named global.d.ts and globals.d.ts? A proper fix for this...
From what I understand, `target: esnext` will avoid most code transforms by tsc, outputting exactly what the user authored. This is in a way similar to https://github.com/sindresorhus/tsconfig/issues/29 In full-typescript projects...
- Picks up https://github.com/mozilla/addons-linter/pull/4989 - Partially includes https://github.com/mozilla/addons-linter/pull/5414 - because Jest requires it to actually read `transformIgnorePatterns` correctly `os-locale` v6 has huge savings ## v6 ## v7
- Fixes #5423 ## Before This isn't even the full table, it doesn't fit on my screen ## After
### Describe the problem and steps to reproduce it: I'm not a fan of the table output, it's repetitive and it breaks file names on small terminals. ### Current ```...
`addons-linter` uses `cheerio` to validate the HTML, currently there are two rules[^1] and cheerio is unreasonably large just for that (2.80MB!)[^2]. Cheerio wraps `parse5` to parse the AST and `addons-linter`...
Rate limiting is only implemented on the first load: https://github.com/download-directory/download-directory.github.io/blob/2988d8bfcfa42f5ff3295985666113fb74c4fc36/index.ts#L85 I think that if you hit it while downloading many files it will just continue making (and retrying) requests and...
- Follows #124 I'm imagining an API like: ```js const download = downloadDirectory('https://github.com/refined-github/sandbox/tree/default-a/.github/workflows'); download.addEventListener('warning', updateStatus); 'retrying…' | 'It’s a large repo…' download.addEventListener('info', updateStatus); download.addEventListener('download', updateStatus); // single file downloaded try...