Skip to content

Commit 7edb4df

Browse files
committed
docs(readme): update readme
1 parent 14ef846 commit 7edb4df

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ESLint configuration for React Native projects written in TypeScript.
88
- Leaves formatting to Prettier with [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier).
99
- Checks for cyclic imports/exports with [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import).
1010
- Enforces consistent import order with [eslint-plugin-import-order-alphabetical](https://github.com/janpaul123/eslint-plugin-import-order-alphabetical).
11-
- Ensures accessible applications with [eslint-plugin-react-native-a11y](https://github.com/FormidableLabs/eslint-plugin-react-native-a11y)
11+
- Ensures accessible applications with [eslint-plugin-react-native-a11y](https://github.com/FormidableLabs/eslint-plugin-react-native-a11y).
1212

13-
## Installation
13+
## 🔩 Installation
1414

1515
```sh
1616
yarn add eslint-config-react-native-typescript
@@ -20,35 +20,35 @@ Extend the config in your `.eslintrc` file.
2020

2121
```json
2222
{
23-
"extends": ["react-native-typescript"]
23+
"extends": "react-native-typescript"
2424
}
2525
```
2626

27-
## Configuration
27+
## 🧙 Configuration
2828

2929
Simply override any rule by assigning new settings below the extends section in your `.eslintrc` file.
3030

3131
```json
3232
{
33-
"extends": ["react-native-typescript"],
33+
"extends": "react-native-typescript",
3434
"rules": {
3535
"no-console": 2
3636
}
3737
}
3838
```
3939

40-
## Dependencies
40+
## 🧶 Dependencies
4141

4242
Your project needs ESLint and TypeScript installed for this config to work correctly.
4343

4444
```sh
4545
yarn add typescript eslint
4646
```
4747

48-
## Changelog
48+
## 📝 Changelog
4949

5050
Changes between versions are documented [here](./CHANGELOG.md).
5151

52-
## License
52+
## 📜 License
5353

5454
[MIT](./LICENSE)

0 commit comments

Comments
 (0)