Skip to content

Commit

Permalink
docs: correct "ESLint" and "Vitest" capitalization in README.md (#575)
Browse files Browse the repository at this point in the history
A small set of fixes - apologies if these are actually intentional, not typos. 🙂
  • Loading branch information
JoshuaKGoldberg authored Nov 26, 2024
1 parent 6b213d0 commit 6388046
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![npm](https://img.shields.io/npm/v/@vitest/eslint-plugin)
[![ci](https://github.com/vitest-dev/eslint-plugin-vitest/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/veritem/eslint-plugin-vitest/actions/workflows/ci.yml)

Eslint plugin for vitest
ESLint plugin for Vitest

### Installation

Expand All @@ -21,7 +21,7 @@ npm install @vitest/eslint-plugin --save-dev

### Usage

Make sure you're running eslint `v9.0.0` or higher for the latest version of this plugin to work. The following example is how your `eslint.config.js` should be setup for this plugin to work for you.
Make sure you're running ESLint `v9.0.0` or higher for the latest version of this plugin to work. The following example is how your `eslint.config.js` should be setup for this plugin to work for you.

```js
import vitest from "@vitest/eslint-plugin";
Expand All @@ -40,7 +40,7 @@ export default [
];
```

If you're not using the latest version of eslint (version `v8.57.0` or lower) you can setup this plugin using the following configuration
If you're not using the latest version of ESLint (version `v8.57.0` or lower) you can setup this plugin using the following configuration

Add `vitest` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:

Expand All @@ -65,7 +65,7 @@ Then configure the rules you want to use under the rules section.
}
```

If you're using old Eslint configuration, make sure to use legacy key like the following
If you're using old ESLint configuration, make sure to use legacy key like the following

```js
{
Expand Down

0 comments on commit 6388046

Please sign in to comment.