@kcconfigs/biome 1.0.0 → 1.0.1
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/CHANGELOG.md +8 -0
- package/README.md +3 -3
- package/package.json +1 -1
- package/src/features/svelte.json +1 -1
- package/src/presets/base.json +1 -1
- package/src/presets/default.json +3 -2
- package/src/presets/svelte.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1](https://github.com/kc-workspace/kcws/compare/@kcconfigs/biome+v1.0.0...@kcconfigs/biome+v1.0.1) (2026-06-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Performance Improvements
|
|
7
|
+
|
|
8
|
+
* **kcconfigs/biome:** ignore claude local settings by default ([#112](https://github.com/kc-workspace/kcws/issues/112)) ([1730826](https://github.com/kc-workspace/kcws/commit/1730826bc5086f227cd54fc8a3df492cc4495706))
|
|
9
|
+
* **kcconfigs/biome:** update schema version in configuration to 2.4.10 ([9729c1a](https://github.com/kc-workspace/kcws/commit/9729c1a1cbfa514ac7e67678ce8d1f371e720a2e))
|
|
10
|
+
|
|
3
11
|
## [1.0.0](https://github.com/kc-workspace/kcws/compare/@kcconfigs/biome+v1.0.0-beta.1...@kcconfigs/biome+v1.0.0) (2026-04-06)
|
|
4
12
|
|
|
5
13
|
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Add a `biome.json` (or `biome.jsonc`) that extends the default preset:
|
|
|
8
8
|
|
|
9
9
|
```jsonc
|
|
10
10
|
{
|
|
11
|
-
"$schema": "https://biomejs.dev/schemas/2.4.
|
|
11
|
+
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
|
|
12
12
|
"extends": ["@kcconfigs/biome"]
|
|
13
13
|
}
|
|
14
14
|
```
|
|
@@ -25,7 +25,7 @@ Example using the base preset with custom overrides:
|
|
|
25
25
|
|
|
26
26
|
```jsonc
|
|
27
27
|
{
|
|
28
|
-
"$schema": "https://biomejs.dev/schemas/2.4.
|
|
28
|
+
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
|
|
29
29
|
"extends": ["@kcconfigs/biome/base"],
|
|
30
30
|
"files": { "includes": ["src/**/*.ts", "tests/**/*.ts"] },
|
|
31
31
|
"linter": {
|
|
@@ -50,7 +50,7 @@ aspect of the configuration.
|
|
|
50
50
|
|
|
51
51
|
```jsonc
|
|
52
52
|
{
|
|
53
|
-
"$schema": "https://biomejs.dev/schemas/2.4.
|
|
53
|
+
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
|
|
54
54
|
"extends": ["@kcconfigs/biome/base", "@kcconfigs/biome/features/svelte"]
|
|
55
55
|
}
|
|
56
56
|
```
|
package/package.json
CHANGED
package/src/features/svelte.json
CHANGED
package/src/presets/base.json
CHANGED
package/src/presets/default.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.4.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
|
|
3
3
|
"extends": ["./base.json"],
|
|
4
4
|
"files": {
|
|
5
5
|
"includes": [
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"!.release-please-config.json",
|
|
14
14
|
"!.github/release-please/config.json",
|
|
15
15
|
"!.release-please-manifest.json",
|
|
16
|
-
"!.github/release-please/manifest.json"
|
|
16
|
+
"!.github/release-please/manifest.json",
|
|
17
|
+
"!.claude/settings.local.json"
|
|
17
18
|
]
|
|
18
19
|
},
|
|
19
20
|
"formatter": {
|
package/src/presets/svelte.json
CHANGED