@dvashim/biome-config 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
To install this package, you can use npm
|
|
7
|
+
To install this package, you can use npm:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install @dvashim/biome-config
|
|
10
|
+
npm install -D @dvashim/biome-config
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
or pnpm:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm add -D @dvashim/biome-config
|
|
11
17
|
```
|
|
12
18
|
|
|
13
19
|
## Provided configurations
|
|
@@ -18,6 +24,8 @@ npm install @dvashim/biome-config
|
|
|
18
24
|
| [React recommended configuration](#react-recommended-configuration) | `@dvashim/biome-config/react/recommended` |
|
|
19
25
|
| [React strict configuration](#react-strict-configuration) | `@dvashim/biome-config/react/strict` |
|
|
20
26
|
|
|
27
|
+
## Using Biome configurations
|
|
28
|
+
|
|
21
29
|
### Base recommended configuration
|
|
22
30
|
|
|
23
31
|
This configuration provides a base setup for linting, formatting, and code consistency across JavaScript, JSX, JSON, and HTML files. Key features include:
|