@area44/biome-config 2.2.3 → 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.
- package/README.md +1 -3
- package/biome.jsonc +75 -95
- package/package.json +1 -4
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/
|
|
23
|
+
Released under the [MIT License](./LICENSE) © 2025-PRESENT [AREA44](https://github.com/area44).
|
package/biome.jsonc
CHANGED
|
@@ -1,95 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "
|
|
3
|
-
"files": {
|
|
4
|
-
"includes": [
|
|
5
|
-
"**",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"!**/
|
|
9
|
-
"!**/
|
|
10
|
-
"!**/
|
|
11
|
-
"!**/
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"!**/.
|
|
15
|
-
"!**/.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"rules": {
|
|
77
|
-
"style": {
|
|
78
|
-
"useConst": "off",
|
|
79
|
-
"useImportType": "off"
|
|
80
|
-
},
|
|
81
|
-
"correctness": {
|
|
82
|
-
"noUnusedVariables": "off",
|
|
83
|
-
"noUnusedImports": "off"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
],
|
|
89
|
-
"vcs": {
|
|
90
|
-
"enabled": true,
|
|
91
|
-
"clientKind": "git",
|
|
92
|
-
"useIgnoreFile": true,
|
|
93
|
-
"defaultBranch": "main"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.1.1/schema.json",
|
|
3
|
+
"files": {
|
|
4
|
+
"includes": [
|
|
5
|
+
"**",
|
|
6
|
+
"!*.min.*",
|
|
7
|
+
"!*.map",
|
|
8
|
+
"!**/public",
|
|
9
|
+
"!**/build",
|
|
10
|
+
"!**/dist",
|
|
11
|
+
"!**/out",
|
|
12
|
+
"!**/.astro",
|
|
13
|
+
"!**/.github",
|
|
14
|
+
"!**/.netlify",
|
|
15
|
+
"!**/.next"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"vcs": {
|
|
19
|
+
"enabled": true,
|
|
20
|
+
"clientKind": "git",
|
|
21
|
+
"useIgnoreFile": true,
|
|
22
|
+
"defaultBranch": "main"
|
|
23
|
+
},
|
|
24
|
+
"linter": {
|
|
25
|
+
"rules": {
|
|
26
|
+
"style": {
|
|
27
|
+
"noNonNullAssertion": "off",
|
|
28
|
+
"useImportType": "off",
|
|
29
|
+
"noParameterAssign": "error",
|
|
30
|
+
"useAsConstAssertion": "error",
|
|
31
|
+
"useDefaultParameterLast": "error",
|
|
32
|
+
"useEnumInitializers": "error",
|
|
33
|
+
"useSelfClosingElements": "error",
|
|
34
|
+
"useSingleVarDeclarator": "error",
|
|
35
|
+
"noUnusedTemplateLiteral": "error",
|
|
36
|
+
"useNumberNamespace": "error",
|
|
37
|
+
"noInferrableTypes": "error",
|
|
38
|
+
"noUselessElse": "error"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"formatter": {
|
|
43
|
+
"formatWithErrors": true,
|
|
44
|
+
"indentStyle": "space"
|
|
45
|
+
},
|
|
46
|
+
"javascript": {
|
|
47
|
+
"formatter": {
|
|
48
|
+
"trailingCommas": "es5"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"assist": {
|
|
52
|
+
"actions": {
|
|
53
|
+
"source": {
|
|
54
|
+
"organizeImports": "on"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"overrides": [
|
|
59
|
+
{
|
|
60
|
+
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
|
|
61
|
+
"linter": {
|
|
62
|
+
"rules": {
|
|
63
|
+
"style": {
|
|
64
|
+
"useConst": "off",
|
|
65
|
+
"useImportType": "off"
|
|
66
|
+
},
|
|
67
|
+
"correctness": {
|
|
68
|
+
"noUnusedVariables": "off",
|
|
69
|
+
"noUnusedImports": "off"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@area44/biome-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "AREA44's Biome configuration",
|
|
5
5
|
"author": "AREA44 (https://github.com/area44)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,9 +26,6 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@biomejs/biome": "^2.1.1"
|
|
28
28
|
},
|
|
29
|
-
"engines": {
|
|
30
|
-
"node": ">=22.17.0"
|
|
31
|
-
},
|
|
32
29
|
"scripts": {
|
|
33
30
|
"check": "biome check --write .",
|
|
34
31
|
"lint": "biome lint --write .",
|