Eric Wang
Eric Wang
Hi I am wondering if there will be a rule to forbid certain filename pattern. Negatives in regex is a bit hard to use, and the `match-regex` rule doesn't include...
https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/which https://github.com/ccampbell/mousetrap/blob/2f9a476ba6158ba69763e4fcf914966cc72ef433/mousetrap.js#L721 ``` if (typeof e.which !== 'number') { e.which = e.keyCode; } ``` should becomes something like ``` const charCode = (typeof e.which == "number") ? e.which : e.keyCode;...
Hi, I am working on a feature works on a retry job and artifact from the job before the retry need to be fetched. `agent artifact download foo bar` failes,...
In the built dist we have ``` module.exports = WebpackBarPlugin; ``` in `webpackbar.js`, which means it should be imported as ``` import * as WebpackBar from 'webpackbar'; ``` However, in...
- Operating System: OSX 10.15.2 - Node Version: v10.17.0 - NPM Version: 6.11.3 - webpack Version: 4.41.5 - css-loader Version: 3.4.2 ### Expected Behavior "preload_fonts" which **imports** "font_a" which composes...
### Feature Proposal css variable: https://developer.mozilla.org/en-US/docs/Web/CSS/var There are cases where we want to use the css variable instead of the `@value` for the responsive design. Say assume I have ```...
### Have you read the Troubleshooting section? Yes ### Plugin version v6.1.2 ### ESLint version v8.45.0 ### Node.js version 20.8.1 ### package manager and version yarn 1.22.19 ### Operating system...
`@types/react` is used in the generated `index.d.ts`, it's better to put `@types/react` in dependencies instead of devDependencies as a consequence.
### Problem description One breaking change introduced in v14 is that almost all api is changed to `async` now. It become a nightmare to upgrade testing library now because we...
"lodash" is a transitive dependency, it shouldn't be imported into the code.