@accelint/biome-config 1.0.2 → 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 CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 1.0.2
4
10
 
5
11
  ### Patch Changes
package/analyzer.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
3
3
  "assist": {
4
4
  "actions": {
5
5
  "source": {
package/catalog-info.yaml CHANGED
@@ -8,7 +8,7 @@ metadata:
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.0.2
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
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
3
3
  "formatter": {
4
4
  "enabled": true,
5
5
  "indentStyle": "space",
package/linter.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
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,23 +1,15 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/package",
3
2
  "name": "@accelint/biome-config",
4
- "title": "Biome Configuration",
5
3
  "description": "The shared Biome configuration used across Accelint projects.",
4
+ "version": "1.1.0",
6
5
  "author": "https://hypergiant.com",
7
- "owner": "default/pathfinder",
8
- "keywords": [
9
- "dev-tk",
10
- "tooling"
11
- ],
12
- "subPath": "tooling/biome-config",
13
- "version": "1.0.2",
14
- "private": false,
15
- "license": "Apache-2.0",
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/gohypergiant/standard-toolkit"
6
+ "$schema": "https://json.schemastore.org/package",
7
+ "devDependencies": {},
8
+ "exports": {
9
+ "./analyzer": "./analyzer.json",
10
+ "./formatter": "./formatter.json",
11
+ "./linter": "./linter.json"
19
12
  },
20
- "type": "module",
21
13
  "files": [
22
14
  "./analyzer.json",
23
15
  "./catalog-info.yaml",
@@ -27,17 +19,30 @@
27
19
  "./package.json",
28
20
  "./README.md"
29
21
  ],
30
- "exports": {
31
- "./analyzer": "./analyzer.json",
32
- "./formatter": "./formatter.json",
33
- "./linter": "./linter.json"
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": "node ../constellation-tracker/dist/main.js",
41
- "lint": "pnpm biome lint"
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
  }