Skip to content

Commit

Permalink
copy edits
Browse files Browse the repository at this point in the history
  • Loading branch information
bpmutter committed Jun 8, 2023
1 parent b898579 commit 365f98d
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions docs/src/extend/custom-rule-tutorial.md
Expand Up @@ -260,9 +260,20 @@ You might want to use a locally defined plugin in one of the following scenarios
- You want to test the plugin before publishing it to npm.
- You want to use a plugin, but do not want to publish it to npm.

First create the ESLint configuration file to include the plugn.
First create the ESLint configuration file to include the plugin.

Add the following code to `eslint.config.js`:
create an ESLint configuration for your project using a [flat configuration file](../use/configure/configuration-files-new), `eslint.config.js`.

Create the ESLint configuration file `eslint.config.js`:

```shell
touch eslint.config.js
```

Then add the following code to `eslint.config.js`:

```javascript
```

```javascript
// eslint.config.js
Expand Down

0 comments on commit 365f98d

Please sign in to comment.