Catherine Davie
Catherine Davie
I expected the `no-es6-methods` rule to accept an `exceptMethods` option, the same way that `no-es6-static-methods` does. However, it does not. So I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` to add that...
## Steps to reproduce 1. Have a bunch of tabs open and/or unloaded _[Note: I'm not sure whether the number of tabs is actually relevant.]_ 2. Open a new tab....
### Description I unload a lot of tabs and often want to drag-and-drop to rearrange them in the sidebar. I don't want these tabs to load themselves just because I...
I like the `expiring-todo-comments` rule, but it is annoying to try to disable it for a single line when `allowWarningComments: false` is set. I expected this to work: ```js //...
When enabling the `no-useless-undefined` rule in Typescript, I expect both of the following to get flagged: ```ts function getsFlaggedCorrectly() { return undefined; // 👍 flagged } function shouldBeFlaggedButIsNot(): undefined {...
I discovered this project while looking for a way to require npm scripts to use `npx` when possible. Is that a lint rule that could be added?