Skip to content

Commit

Permalink
chore(eslint-plugin-fsd-checker): update ESLint plugin README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arturvoloshyn committed Jan 22, 2024
1 parent 0419fe5 commit aeeb76b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/eslint-plugin-fsd-checker/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# eslint-plugin-fsd-checker
# @blog/eslint-plugin-fsd-checker

plugin for fsd paths and slices

Expand All @@ -10,20 +10,20 @@ You'll first need to install [ESLint](https://eslint.org/):
npm i eslint --save-dev
```

Next, install `eslint-plugin-fsd-checker`:
Next, install `@blog/eslint-plugin-fsd-checker`:

```sh
npm install eslint-plugin-fsd-checker --save-dev
npm install @blog/eslint-plugin-fsd-checker --save-dev
```

## Usage

Add `fsd-checker` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
Add `@blog/fsd-checker` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:

```json
{
"plugins": [
"fsd-checker"
"@blog/fsd-checker"
]
}
```
Expand All @@ -34,7 +34,7 @@ Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"fsd-checker/rule-name": 2
"@blog/fsd-checker/rule-name": 2
}
}
```
Expand Down

0 comments on commit aeeb76b

Please sign in to comment.