@accelint/biome-config 0.1.2 → 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 +15 -0
- package/README.md +3 -0
- package/analyzer.json +12 -3
- package/catalog-info.yaml +24 -0
- package/formatter.json +2 -3
- package/linter.json +9 -8
- package/package.json +25 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @accelint/biome-config
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 64280a7: - Released `@accelint/constellation-tracker` - A tool that helps maintain catalog-info.yaml files for Constellation integration
|
|
8
|
+
- Ensures all packages include catalog-info.yaml in their published files for better discoverability and integration with Constellation
|
|
9
|
+
- Provides automated tracking and updating of component metadata across the project
|
|
10
|
+
- Enhanced package metadata to support better integration with internal tooling
|
|
11
|
+
|
|
12
|
+
## 1.0.0
|
|
13
|
+
|
|
14
|
+
### Major Changes
|
|
15
|
+
|
|
16
|
+
- f2d1601: upgraded to Biome V2
|
|
17
|
+
|
|
3
18
|
## 0.1.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
ADDED
package/analyzer.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/
|
|
3
|
-
"
|
|
4
|
-
"
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
|
|
3
|
+
"assist": {
|
|
4
|
+
"actions": {
|
|
5
|
+
"source": {
|
|
6
|
+
"organizeImports": {
|
|
7
|
+
"level": "on",
|
|
8
|
+
"options": {
|
|
9
|
+
"groups": [{ "type": false }]
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
5
14
|
}
|
|
6
15
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
apiVersion: backstage.io/v1alpha1
|
|
3
|
+
kind: Component
|
|
4
|
+
metadata:
|
|
5
|
+
name: "@accelint/biome-config"
|
|
6
|
+
title: Biome Configuration
|
|
7
|
+
description: The shared Biome configuration used across Accelint projects.
|
|
8
|
+
annotations:
|
|
9
|
+
backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/tooling/biome-config/catalog-info.yaml
|
|
10
|
+
backstage.io/techdocs-ref: dir:.
|
|
11
|
+
package/version: 1.0.0
|
|
12
|
+
github.com/project-slug: gohypergiant/standard-toolkit
|
|
13
|
+
links:
|
|
14
|
+
- url: https://github.com/gohypergiant/standard-toolkit/tree/main/tooling/biome-config
|
|
15
|
+
title: Documentation
|
|
16
|
+
icon: docs
|
|
17
|
+
type: documentation
|
|
18
|
+
tags:
|
|
19
|
+
- dev-tk
|
|
20
|
+
- tooling
|
|
21
|
+
spec:
|
|
22
|
+
type: library
|
|
23
|
+
lifecycle: production
|
|
24
|
+
owner: group:default/pathfinder
|
package/formatter.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
|
|
3
3
|
"formatter": {
|
|
4
4
|
"enabled": true,
|
|
5
5
|
"indentStyle": "space",
|
|
@@ -7,8 +7,7 @@
|
|
|
7
7
|
"lineWidth": 80,
|
|
8
8
|
"lineEnding": "lf",
|
|
9
9
|
"attributePosition": "auto",
|
|
10
|
-
"formatWithErrors": false
|
|
11
|
-
"ignore": []
|
|
10
|
+
"formatWithErrors": false
|
|
12
11
|
},
|
|
13
12
|
"javascript": {
|
|
14
13
|
"formatter": {
|
package/linter.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
|
|
3
3
|
"linter": {
|
|
4
4
|
"enabled": true,
|
|
5
5
|
"rules": {
|
|
@@ -17,7 +17,12 @@
|
|
|
17
17
|
"noUndeclaredVariables": "error",
|
|
18
18
|
"useExhaustiveDependencies": "warn",
|
|
19
19
|
"noUnusedImports": "error",
|
|
20
|
-
"noUnusedVariables":
|
|
20
|
+
"noUnusedVariables": {
|
|
21
|
+
"level": "error",
|
|
22
|
+
"options": {
|
|
23
|
+
"ignoreRestSiblings": true
|
|
24
|
+
}
|
|
25
|
+
},
|
|
21
26
|
"useHookAtTopLevel": "error"
|
|
22
27
|
},
|
|
23
28
|
"performance": {
|
|
@@ -34,9 +39,7 @@
|
|
|
34
39
|
"syntax": "shorthand"
|
|
35
40
|
}
|
|
36
41
|
},
|
|
37
|
-
"noParameterAssign":
|
|
38
|
-
"level": "error"
|
|
39
|
-
},
|
|
42
|
+
"noParameterAssign": "error",
|
|
40
43
|
"useNamingConvention": {
|
|
41
44
|
"level": "error",
|
|
42
45
|
"options": {
|
|
@@ -57,9 +60,7 @@
|
|
|
57
60
|
"noArrayIndexKey": "warn",
|
|
58
61
|
"noEmptyBlockStatements": "error",
|
|
59
62
|
"useAwait": "error",
|
|
60
|
-
"noExplicitAny": "warn"
|
|
61
|
-
},
|
|
62
|
-
"nursery": {
|
|
63
|
+
"noExplicitAny": "warn",
|
|
63
64
|
"noDuplicateElseIf": "error"
|
|
64
65
|
}
|
|
65
66
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accelint/biome-config",
|
|
3
|
-
"
|
|
3
|
+
"title": "Biome Configuration",
|
|
4
|
+
"version": "1.0.1",
|
|
4
5
|
"private": false,
|
|
5
6
|
"license": "Apache-2.0",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"dev-tk",
|
|
9
|
+
"tooling"
|
|
10
|
+
],
|
|
11
|
+
"description": "The shared Biome configuration used across Accelint projects.",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/gohypergiant/standard-toolkit"
|
|
15
|
+
},
|
|
16
|
+
"owner": "default/pathfinder",
|
|
17
|
+
"subPath": "tooling/biome-config",
|
|
6
18
|
"type": "module",
|
|
19
|
+
"files": [
|
|
20
|
+
"./analyzer.json",
|
|
21
|
+
"./catalog-info.yaml",
|
|
22
|
+
"./CHANGELOG.md",
|
|
23
|
+
"./formatter.json",
|
|
24
|
+
"./linter.json",
|
|
25
|
+
"./package.json",
|
|
26
|
+
"./README.md"
|
|
27
|
+
],
|
|
7
28
|
"exports": {
|
|
8
29
|
"./analyzer": "./analyzer.json",
|
|
9
30
|
"./formatter": "./formatter.json",
|
|
10
|
-
"./linter": "./linter.json"
|
|
11
|
-
"./package.json": "./package.json"
|
|
31
|
+
"./linter": "./linter.json"
|
|
12
32
|
},
|
|
13
33
|
"$schema": "https://json.schemastore.org/package",
|
|
14
34
|
"author": "https://hypergiant.com",
|
|
@@ -17,6 +37,7 @@
|
|
|
17
37
|
},
|
|
18
38
|
"sideEffects": false,
|
|
19
39
|
"scripts": {
|
|
20
|
-
"
|
|
40
|
+
"constellation-tracker": "node ../constellation-tracker/dist/main.js",
|
|
41
|
+
"lint": "pnpm biome lint"
|
|
21
42
|
}
|
|
22
43
|
}
|