|
1 | | -[![npm version][npm-image]][npm-url] |
| 1 | +[](https://www.npmjs.com/package/eslint-config-eslint) |
| 2 | +[](https://www.npmjs.com/package/eslint-config-eslint) |
| 3 | +[](https://github.com/eslint/eslint/actions) |
| 4 | +<br> |
| 5 | +[](https://opencollective.com/eslint) |
| 6 | +[](https://opencollective.com/eslint) |
2 | 7 |
|
3 | 8 | # ESLint Configuration |
4 | 9 |
|
5 | | -[Website](https://eslint.org) | [Configure ESLint](https://eslint.org/docs/latest/use/configure) | [Rules](https://eslint.org/docs/rules/) | [Contributing](https://eslint.org/docs/latest/contribute) | [Twitter](https://twitter.com/geteslint) | [Discord](https://eslint.org/chat) | [Mastodon](https://fosstodon.org/@eslint) |
| 10 | +[Website](https://eslint.org) | |
| 11 | +[Configure ESLint](https://eslint.org/docs/latest/use/configure) | |
| 12 | +[Rules](https://eslint.org/docs/rules/) | |
| 13 | +[Contribute to ESLint](https://eslint.org/docs/latest/contribute) | |
| 14 | +[Report Bugs](https://eslint.org/docs/latest/contribute/report-bugs) | |
| 15 | +[Code of Conduct](https://eslint.org/conduct) | |
| 16 | +[X](https://x.com/geteslint) | |
| 17 | +[Discord](https://eslint.org/chat) | |
| 18 | +[Mastodon](https://fosstodon.org/@eslint) | |
| 19 | +[Bluesky](https://bsky.app/profile/eslint.org) |
6 | 20 |
|
7 | 21 | Contains the ESLint configuration used for projects maintained by the ESLint team. |
8 | 22 |
|
9 | 23 | ## Installation |
10 | 24 |
|
11 | | -You can install ESLint using npm: |
| 25 | +You can install ESLint using npm or other package managers: |
12 | 26 |
|
13 | 27 | ```shell |
14 | | -npm install eslint --save-dev |
| 28 | +npm install eslint -D |
| 29 | +# or |
| 30 | +yarn add eslint -D |
| 31 | +# or |
| 32 | +pnpm install eslint -D |
| 33 | +# or |
| 34 | +bun add eslint -D |
15 | 35 | ``` |
16 | 36 |
|
17 | 37 | Then install this configuration: |
18 | 38 |
|
19 | 39 | ```shell |
20 | | -npm install eslint-config-eslint --save-dev |
| 40 | +npm install eslint-config-eslint -D |
| 41 | +# or |
| 42 | +yarn add eslint-config-eslint -D |
| 43 | +# or |
| 44 | +pnpm install eslint-config-eslint -D |
| 45 | +# or |
| 46 | +bun add eslint-config-eslint -D |
21 | 47 | ``` |
22 | 48 |
|
23 | 49 | ## Usage |
@@ -87,6 +113,3 @@ export default defineConfig([eslintConfigESLint, eslintConfigESLintFormatting]); |
87 | 113 | ### Where to ask for help? |
88 | 114 |
|
89 | 115 | Open a [discussion](https://github.com/eslint/eslint/discussions) or stop by our [Discord server](https://eslint.org/chat) instead of filing an issue. |
90 | | - |
91 | | -[npm-image]: https://img.shields.io/npm/v/eslint-config-eslint.svg?style=flat-square |
92 | | -[npm-url]: https://www.npmjs.com/package/eslint-config-eslint |
|
0 commit comments