Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
azinit committed Feb 2, 2022
1 parent 55759f2 commit 1887957
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rules/import-order/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Usage

Add `"@feature-sliced/eslint-config/rules/import-order"` to you `extends` section in ESLint config.
Add `"@feature-sliced/eslint-config/rules/import-order"` to your `extends` section in ESLint config.

```js
// 👎 Fail
Expand Down Expand Up @@ -33,7 +33,7 @@ import { getSmth } from "./lib"; // 4) sibling
**With reversed order ("from abstract to specific") and spaces between layers groups**
[(why experimental?)](https://github.com/feature-sliced/eslint-config/issues/85)

Add `"@feature-sliced/eslint-config/rules/import-order/experimental"` to you `extends` section in ESLint config. (for `^0.1.0-beta.3` versions)
Add `"@feature-sliced/eslint-config/rules/import-order/experimental"` to your `extends` section in ESLint config. (for `^0.1.0-beta.3` versions)

```js
import axios from "axios"; // 1) external libs
Expand Down
2 changes: 1 addition & 1 deletion rules/layers-slices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Usage

Add `"@feature-sliced/eslint-config/rules/layers-slices"` to you `extends` section in ESLint config.
Add `"@feature-sliced/eslint-config/rules/layers-slices"` to your `extends` section in ESLint config.

```js
// 👎 Fail
Expand Down
2 changes: 1 addition & 1 deletion rules/public-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Usage

Add `"@feature-sliced/eslint-config/rules/public-api"` to you `extends` section in ESLint config.
Add `"@feature-sliced/eslint-config/rules/public-api"` to your `extends` section in ESLint config.

```js
// 👎 Fail
Expand Down

0 comments on commit 1887957

Please sign in to comment.