@area44/biome-config 2.2.4 → 2.2.5

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.
Files changed (3) hide show
  1. package/README.md +1 -3
  2. package/biome.jsonc +26 -47
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -18,8 +18,6 @@ To apply the configuration, update your `biome.json` file as follows:
18
18
  }
19
19
  ```
20
20
 
21
- For more details on configuring Biome, refer to the official guide [Biome Configuration Guide](https://biomejs.dev/guides/configure-biome/#sharing-a-configuration-file).
22
-
23
21
  ## License
24
22
 
25
- Released under the [MIT License](./LICENSE) © 2025-PRESENT [AREA44](https://github.com/AREA44).
23
+ Released under the [MIT License](./LICENSE) © 2025-PRESENT [AREA44](https://github.com/area44).
package/biome.jsonc CHANGED
@@ -1,43 +1,28 @@
1
1
  {
2
- "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.1.1/schema.json",
3
3
  "files": {
4
4
  "includes": [
5
5
  "**",
6
- "!**/*.min.css",
7
- "!**/*.min.js",
8
- "!**/node_modules/",
9
- "!**/package-lock.json",
10
- "!**/pnpm-lock.yaml",
11
- "!**/yarn.lock",
12
- "!**/dist/",
13
- "!**/out/",
14
- "!**/.astro/",
15
- "!**/.github/",
16
- "!**/.netlify/",
17
- "!**/.next/"
6
+ "!*.min.*",
7
+ "!*.map",
8
+ "!**/public",
9
+ "!**/build",
10
+ "!**/dist",
11
+ "!**/out",
12
+ "!**/.astro",
13
+ "!**/.github",
14
+ "!**/.netlify",
15
+ "!**/.next"
18
16
  ]
19
17
  },
20
- "formatter": {
18
+ "vcs": {
21
19
  "enabled": true,
22
- "formatWithErrors": true,
23
- "indentStyle": "space",
24
- "indentWidth": 2,
25
- "lineEnding": "lf",
26
- "lineWidth": 80,
27
- "attributePosition": "auto",
28
- "bracketSpacing": true
29
- },
30
- "assist": {
31
- "actions": {
32
- "source": {
33
- "organizeImports": "on"
34
- }
35
- }
20
+ "clientKind": "git",
21
+ "useIgnoreFile": true,
22
+ "defaultBranch": "main"
36
23
  },
37
24
  "linter": {
38
- "enabled": true,
39
25
  "rules": {
40
- "recommended": true,
41
26
  "style": {
42
27
  "noNonNullAssertion": "off",
43
28
  "useImportType": "off",
@@ -54,22 +39,22 @@
54
39
  }
55
40
  }
56
41
  },
57
- "html": {
58
- "formatter": {
59
- "enabled": true
60
- }
42
+ "formatter": {
43
+ "formatWithErrors": true,
44
+ "indentStyle": "space"
61
45
  },
62
46
  "javascript": {
63
47
  "formatter": {
64
- "arrowParentheses": "always",
65
- "bracketSameLine": false,
66
- "jsxQuoteStyle": "double",
67
- "quoteProperties": "asNeeded",
68
- "quoteStyle": "double",
69
- "semicolons": "always",
70
48
  "trailingCommas": "es5"
71
49
  }
72
50
  },
51
+ "assist": {
52
+ "actions": {
53
+ "source": {
54
+ "organizeImports": "on"
55
+ }
56
+ }
57
+ },
73
58
  "overrides": [
74
59
  {
75
60
  "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
@@ -86,11 +71,5 @@
86
71
  }
87
72
  }
88
73
  }
89
- ],
90
- "vcs": {
91
- "enabled": true,
92
- "clientKind": "git",
93
- "useIgnoreFile": true,
94
- "defaultBranch": "main"
95
- }
74
+ ]
96
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@area44/biome-config",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "AREA44's Biome configuration",
5
5
  "author": "AREA44 (https://github.com/area44)",
6
6
  "license": "MIT",