@dvashim/biome-config 1.1.11 → 1.1.12
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ pnpm add -D @dvashim/biome-config
|
|
|
32
32
|
Base recommended configuration:
|
|
33
33
|
|
|
34
34
|
```jsonc
|
|
35
|
-
// biome.json (
|
|
35
|
+
// biome.json (Base recommended)
|
|
36
36
|
// This configuration provides a base setup for linting,
|
|
37
37
|
// formatting, and code consistency across JavaScript,
|
|
38
38
|
// JSX, JSON, and HTML files.
|
|
@@ -45,7 +45,7 @@ Base recommended configuration:
|
|
|
45
45
|
React recommended configuration:
|
|
46
46
|
|
|
47
47
|
```jsonc
|
|
48
|
-
// biome.json (
|
|
48
|
+
// biome.json (React recommended)
|
|
49
49
|
// This configuration extends the base recommended configuration
|
|
50
50
|
// and enables the recommended rules for the React domain
|
|
51
51
|
|
|
@@ -57,20 +57,20 @@ React recommended configuration:
|
|
|
57
57
|
React strict configuration:
|
|
58
58
|
|
|
59
59
|
```jsonc
|
|
60
|
-
// biome.json (
|
|
60
|
+
// biome.json (React strict)
|
|
61
61
|
// This configuration enables recommended lint rules,
|
|
62
62
|
// including React-specific recommended rules,
|
|
63
63
|
// and opts into nursery (experimental) rules.
|
|
64
64
|
|
|
65
65
|
{
|
|
66
|
-
"extends": ["@dvashim/biome-config/react
|
|
66
|
+
"extends": ["@dvashim/biome-config/react-strict"]
|
|
67
67
|
}
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
React balanced configuration:
|
|
71
71
|
|
|
72
72
|
```jsonc
|
|
73
|
-
// biome.json (
|
|
73
|
+
// biome.json (React balanced)
|
|
74
74
|
// This configuration enables recommended lint rules,
|
|
75
75
|
// including React-specific recommended rules,
|
|
76
76
|
// with a few rules intentionally disabled
|