@kcconfigs/biome 1.0.0-beta.1 → 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 CHANGED
@@ -1,5 +1,20 @@
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
+
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)
12
+
13
+
14
+ ### Miscellaneous Chores
15
+
16
+ * **kcconfigs/biome:** force update v1.0.0-beta.1 => v1.0.0 ([7746712](https://github.com/kc-workspace/kcws/commit/77467128ce5f0c3bfa1422a52ef8f666241ed35b))
17
+
3
18
  ## [1.0.0-beta.1](https://github.com/kc-workspace/kcws/compare/@kcconfigs/biome+v0.2.2...@kcconfigs/biome+v1.0.0-beta.1) (2026-03-20)
4
19
 
5
20
 
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.6/schema.json",
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.6/schema.json",
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.6/schema.json",
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
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@kcconfigs/biome",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.1",
4
4
  "description": "Shared biome configuration",
5
5
  "devDependencies": {
6
- "@biomejs/biome": "2.4.6"
6
+ "@biomejs/biome": "2.4.10"
7
7
  },
8
8
  "peerDependencies": {
9
9
  "@biomejs/biome": "^2.0.0"
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
3
3
  "overrides": [
4
4
  {
5
5
  "includes": ["**/*.svelte", "!build", "!build.*"],
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
3
3
  "vcs": {
4
4
  "enabled": true,
5
5
  "clientKind": "git",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
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": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
3
3
  "extends": ["./base.json", "../features/svelte.json"],
4
4
  "files": {
5
5
  "includes": [