https://github.com/beeequeue/eslint-plugin
🔧 My opinionated, modular ESLint configs
https://github.com/beeequeue/eslint-plugin
eslint eslint-config eslint-plugin
Last synced: 9 months ago
JSON representation
🔧 My opinionated, modular ESLint configs
- Host: GitHub
- URL: https://github.com/beeequeue/eslint-plugin
- Owner: beeequeue
- License: mit
- Created: 2021-02-28T23:31:41.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T04:46:44.000Z (almost 2 years ago)
- Last Synced: 2025-04-30T14:25:13.193Z (9 months ago)
- Topics: eslint, eslint-config, eslint-plugin
- Language: TypeScript
- Homepage:
- Size: 2.8 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# `@beequeue/eslint-plugin`
[](https://www.npmjs.com/package/@beequeue/eslint-plugin)
[](https://github.com/BeeeQueue/eslint-plugin/actions?query=branch%3Amain+workflow%3ACI)
My extensive, opinionated ESLint configs.
Modular config presets that can be mixed and matched!
- [Config base (JS)](./src/config/base.ts): `plugin:@beequeue/base`
- [ESM](./src/config/esm.ts): `plugin:@beequeue/esm`
- [TypeScript](./src/config/typescript.ts): `plugin:@beequeue/typescript`
- [Node](./src/config/node.ts): `plugin:@beequeue/node`
- [React](./src/config/react.ts): `plugin:@beequeue/react`
- [Vue](./src/config/vue.ts): `plugin:@beequeue/vue`
- [Electron](./src/config/electron.ts): `plugin:@beequeue/electron`
---
## Usage
- `npm i -D @beequeue/eslint-plugin`
- `yarn add -D @beequeue/eslint-plugin`
- `pnpm add -D @beequeue/eslint-plugin`
```js
// .eslintrc.js
module.exports = {
root: true,
extends: [
// The base rules are always required
"plugin:@beequeue/base",
// Any other presets you need
"plugin:@beequeue/vue",
"plugin:@beequeue/typescript",
],
}
```