Michael Schmidt
Michael Schmidt
The babel plugin should support prism-themes themes and custom themes. --- See PrismJS/prism-themes#149.
CupScale cannot upscale any images with non-ASCII characters in its name. I first found this bug on a file with a "b" (U+ff42) but it happens for all non-ASCII characters...
Before the actual batch upscaling begins, CupScale does some preprocessing and conversion. This is currently done sequentially on a single thread. Please parallelize this process to reduce the overhead of...
I am unable to preview a full-image upscale. When upscaling a 1024x1024 PNG using the "Refresh preview (full image)" button, I get a generic error message after about 2 minutes...
[Protobuf `enum`s](https://developers.google.com/protocol-buffers/docs/proto3#enum) are incorrectly types as [TypeScript `enum`s](https://www.typescriptlang.org/docs/handbook/enums.html). This is incorrect because TS enums map from item name to value __and__ from value to item name. ### Example Proto file:...
The [developer documentation about rules](https://eslint.org/docs/developer-guide/working-with-rules) (`docs/developer-guide/working-with-rules.md`) doesn't contain enough information about rules. This is a followup to eslint/website#791. The following questions should be answered: 1. Q: When do fixes conflict?...
**Description** Add a new rule to find bad (= obviously or likely incorrect) capturing groups. Bad capturing groups are: - Capturing groups that do not behave as their pattern would...
I think we should add a rule that reports cases for exponential backtracking and polynomial backtracking. However, there are two problems standing in our way: ### Performance Detecting exponential backtracking...
This fixes #23. Changes: - `countCapturingParens` now counts the number of named and unnamed groups separately. - The `_nFlag` property is now set by `consumePattern` instead of `validatePattern`. - Patterns...
When parsing a non-Unicode regex that contains named backreferences with the `strict: true` option, a syntax error will always be throws regardless of whether the regex is actually correct or...