diff --git a/rules/import-order/README.md b/rules/import-order/README.md index d112ae7..625869b 100644 --- a/rules/import-order/README.md +++ b/rules/import-order/README.md @@ -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 @@ -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 diff --git a/rules/layers-slices/README.md b/rules/layers-slices/README.md index c53afd0..6a35ffd 100644 --- a/rules/layers-slices/README.md +++ b/rules/layers-slices/README.md @@ -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 diff --git a/rules/public-api/README.md b/rules/public-api/README.md index a5c4553..0c1fdc5 100644 --- a/rules/public-api/README.md +++ b/rules/public-api/README.md @@ -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