eslint-plugin-github
eslint-plugin-github copied to clipboard
An opinionated collection of ESLint rules used by GitHub.
```js window.addEventListener('touchmove', touchMove, { passive: false }); ``` This should not trigger a `github/require-passive-events` warning because I've explicitly passed `passive: false`.
This PR fixes a few issues: #### 1. Fixing bug in `getElementType` logic ```.ts const mapping = { 'Box': 'div' } ``` ```.tsx ``` will be interpreted as `div`. Currently...
There appears to be a bug in the `getElementType` logic. When the polymorphic prop is set but cannot be interpreted by the linter, the linter falls back to using the...
Bumps the all-dependencies group with 2 updates: [chai](https://github.com/chaijs/chai) and [eslint-doc-generator](https://github.com/bmish/eslint-doc-generator). Updates `chai` from 5.1.0 to 5.1.1 Release notes Sourced from chai's releases. v5.1.1 What's Changed Set up ESLint for JSDoc...
Please add support for ESLint 9, including Flat config support. See: - https://eslint.org/docs/latest/use/configure/configuration-files-new - https://eslint.org/blog/2022/08/new-config-system-part-1/ - https://eslint.org/blog/2022/08/new-config-system-part-2/ - https://eslint.org/docs/latest/use/configure/migration-guide Thanks!
Bumps the all-dependencies group with 4 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [eslint-plugin-eslint-plugin](https://github.com/eslint-community/eslint-plugin-eslint-plugin) and [mocha](https://github.com/mochajs/mocha). Updates `@typescript-eslint/eslint-plugin` from 7.13.1 to 7.14.1 Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v7.14.1 7.14.1 (2024-06-24) 🚀 Features support...
Bumps the all-dependencies group with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 8.1.0 to 8.2.0 Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v8.2.0 8.2.0 (2024-08-19) 🚀 Features eslint-plugin: add suggestion...
Hey, this plugin seems to be incompatible with eslint 9 and thus blocks us from upgrading our projects. It would be great to bring it up to eslint 9 and...