@accelint/biome-config 1.0.1 → 1.1.0
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 +14 -0
- package/analyzer.json +1 -1
- package/catalog-info.yaml +2 -2
- package/formatter.json +1 -1
- package/linter.json +7 -1
- package/package.json +28 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @accelint/biome-config
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 37b79c7: Add rule for constants that allow constant and camel case
|
|
8
|
+
|
|
9
|
+
## 1.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0d697fa: Fixed definitions in package files for longhand repository definitions, while disabling the option in syncpack that changed it.
|
|
14
|
+
- f99f294: Updated syncpack and realigned all packages for dependency versions
|
|
15
|
+
- 935b8e5: Updated the package names in the Constellation configuration file.
|
|
16
|
+
|
|
3
17
|
## 1.0.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/analyzer.json
CHANGED
package/catalog-info.yaml
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
apiVersion: backstage.io/v1alpha1
|
|
3
3
|
kind: Component
|
|
4
4
|
metadata:
|
|
5
|
-
name:
|
|
5
|
+
name: accelint_biome-config
|
|
6
6
|
title: Biome Configuration
|
|
7
7
|
description: The shared Biome configuration used across Accelint projects.
|
|
8
8
|
annotations:
|
|
9
9
|
backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/tooling/biome-config/catalog-info.yaml
|
|
10
10
|
backstage.io/techdocs-ref: dir:.
|
|
11
|
-
package/version: 1.
|
|
11
|
+
package/version: 1.1.0
|
|
12
12
|
github.com/project-slug: gohypergiant/standard-toolkit
|
|
13
13
|
links:
|
|
14
14
|
- url: https://github.com/gohypergiant/standard-toolkit/tree/main/tooling/biome-config
|
package/formatter.json
CHANGED
package/linter.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
|
|
3
3
|
"linter": {
|
|
4
4
|
"enabled": true,
|
|
5
5
|
"rules": {
|
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
"kind": "objectLiteralProperty"
|
|
52
52
|
},
|
|
53
53
|
"formats": ["CONSTANT_CASE", "camelCase"]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"selector": {
|
|
57
|
+
"kind": "variable"
|
|
58
|
+
},
|
|
59
|
+
"formats": ["camelCase", "CONSTANT_CASE"]
|
|
54
60
|
}
|
|
55
61
|
]
|
|
56
62
|
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accelint/biome-config",
|
|
3
|
-
"title": "Biome Configuration",
|
|
4
|
-
"version": "1.0.1",
|
|
5
|
-
"private": false,
|
|
6
|
-
"license": "Apache-2.0",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"dev-tk",
|
|
9
|
-
"tooling"
|
|
10
|
-
],
|
|
11
3
|
"description": "The shared Biome configuration used across Accelint projects.",
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"author": "https://hypergiant.com",
|
|
6
|
+
"$schema": "https://json.schemastore.org/package",
|
|
7
|
+
"devDependencies": {},
|
|
8
|
+
"exports": {
|
|
9
|
+
"./analyzer": "./analyzer.json",
|
|
10
|
+
"./formatter": "./formatter.json",
|
|
11
|
+
"./linter": "./linter.json"
|
|
15
12
|
},
|
|
16
|
-
"owner": "default/pathfinder",
|
|
17
|
-
"subPath": "tooling/biome-config",
|
|
18
|
-
"type": "module",
|
|
19
13
|
"files": [
|
|
20
14
|
"./analyzer.json",
|
|
21
15
|
"./catalog-info.yaml",
|
|
@@ -25,19 +19,30 @@
|
|
|
25
19
|
"./package.json",
|
|
26
20
|
"./README.md"
|
|
27
21
|
],
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
22
|
+
"keywords": [
|
|
23
|
+
"dev-tk",
|
|
24
|
+
"tooling"
|
|
25
|
+
],
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"owner": "default/pathfinder",
|
|
28
|
+
"private": false,
|
|
35
29
|
"publishConfig": {
|
|
36
30
|
"access": "public"
|
|
37
31
|
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/gohypergiant/standard-toolkit"
|
|
35
|
+
},
|
|
38
36
|
"sideEffects": false,
|
|
37
|
+
"subPath": "tooling/biome-config",
|
|
38
|
+
"title": "Biome Configuration",
|
|
39
|
+
"type": "module",
|
|
39
40
|
"scripts": {
|
|
40
|
-
"constellation-tracker": "
|
|
41
|
-
"
|
|
41
|
+
"constellation-tracker": "pnpm exec constellation-tracker",
|
|
42
|
+
"format": "pnpm biome format . --write --verbose",
|
|
43
|
+
"format:check": "pnpm biome format . --verbose",
|
|
44
|
+
"license": "pnpm zx ../../scripts/license.mjs",
|
|
45
|
+
"lint": "pnpm biome lint . --verbose",
|
|
46
|
+
"lint:package": "pnpm publint"
|
|
42
47
|
}
|
|
43
48
|
}
|