@area44/biome-config 2.2.5 → 2.2.6

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 (2) hide show
  1. package/biome.jsonc +78 -75
  2. package/package.json +34 -34
package/biome.jsonc CHANGED
@@ -1,75 +1,78 @@
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
- }
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/2.2.4/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
+ "a11y": {
41
+ "noSvgWithoutTitle": "off"
42
+ }
43
+ }
44
+ },
45
+ "formatter": {
46
+ "formatWithErrors": true,
47
+ "indentStyle": "space"
48
+ },
49
+ "javascript": {
50
+ "formatter": {
51
+ "trailingCommas": "es5"
52
+ }
53
+ },
54
+ "assist": {
55
+ "actions": {
56
+ "source": {
57
+ "organizeImports": "on"
58
+ }
59
+ }
60
+ },
61
+ "overrides": [
62
+ {
63
+ "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
64
+ "linter": {
65
+ "rules": {
66
+ "style": {
67
+ "useConst": "off",
68
+ "useImportType": "off"
69
+ },
70
+ "correctness": {
71
+ "noUnusedVariables": "off",
72
+ "noUnusedImports": "off"
73
+ }
74
+ }
75
+ }
76
+ }
77
+ ]
78
+ }
package/package.json CHANGED
@@ -1,34 +1,34 @@
1
- {
2
- "name": "@area44/biome-config",
3
- "version": "2.2.5",
4
- "description": "AREA44's Biome configuration",
5
- "author": "AREA44 (https://github.com/area44)",
6
- "license": "MIT",
7
- "publishConfig": {
8
- "access": "public",
9
- "registry": "https://registry.npmjs.org/"
10
- },
11
- "homepage": "https://github.com/area44/biome-config",
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/area44/biome-config.git"
15
- },
16
- "keywords": [
17
- "biome",
18
- "biome-config",
19
- "linter",
20
- "formatter"
21
- ],
22
- "files": [
23
- "biome.jsonc"
24
- ],
25
- "main": "./biome.jsonc",
26
- "devDependencies": {
27
- "@biomejs/biome": "^2.1.1"
28
- },
29
- "scripts": {
30
- "check": "biome check --write .",
31
- "lint": "biome lint --write .",
32
- "format": "biome format --write ."
33
- }
34
- }
1
+ {
2
+ "name": "@area44/biome-config",
3
+ "version": "2.2.6",
4
+ "description": "AREA44's Biome configuration",
5
+ "author": "AREA44 (https://github.com/area44)",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "access": "public",
9
+ "registry": "https://registry.npmjs.org/"
10
+ },
11
+ "homepage": "https://github.com/area44/biome-config",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/area44/biome-config.git"
15
+ },
16
+ "keywords": [
17
+ "biome",
18
+ "biome-config",
19
+ "linter",
20
+ "formatter"
21
+ ],
22
+ "files": [
23
+ "biome.jsonc"
24
+ ],
25
+ "main": "./biome.jsonc",
26
+ "scripts": {
27
+ "check": "biome check --write",
28
+ "lint": "biome lint --write",
29
+ "format": "biome format --write"
30
+ },
31
+ "devDependencies": {
32
+ "@biomejs/biome": "^2.2.4"
33
+ }
34
+ }