From 6388046472dcafe23db7029e10b8a8a56af34fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Tue, 26 Nov 2024 13:04:53 -0500 Subject: [PATCH] docs: correct "ESLint" and "Vitest" capitalization in README.md (#575) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A small set of fixes - apologies if these are actually intentional, not typos. 🙂 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a4ffe2..606d11e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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"; @@ -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: @@ -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 {