@bubbly-lab/biome-config 1.0.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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/base.json +37 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @bubbly-lab/biome-config
2
+
3
+ Bubbly Lab에서 사용하는 Biome 설정입니다.
package/base.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3
+ "vcs": {
4
+ "enabled": true,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": true
7
+ },
8
+ "files": {
9
+ "ignoreUnknown": true
10
+ },
11
+ "formatter": {
12
+ "enabled": true,
13
+ "indentStyle": "space"
14
+ },
15
+ "linter": {
16
+ "enabled": true,
17
+ "rules": {
18
+ "recommended": true
19
+ }
20
+ },
21
+ "javascript": {
22
+ "formatter": {
23
+ "arrowParentheses": "asNeeded",
24
+ "lineWidth": 80,
25
+ "quoteStyle": "single",
26
+ "trailingCommas": "all"
27
+ }
28
+ },
29
+ "assist": {
30
+ "enabled": true,
31
+ "actions": {
32
+ "source": {
33
+ "organizeImports": "on"
34
+ }
35
+ }
36
+ }
37
+ }
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@bubbly-lab/biome-config",
3
+ "version": "1.0.0",
4
+ "description": "biome config for bubbly lab",
5
+ "keywords": [
6
+ "bubbly-lab",
7
+ "@biomejs/biome",
8
+ "biome",
9
+ "biome-config"
10
+ ],
11
+ "homepage": "https://github.com/rumyscape/code-style",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/rumyscape/code-style.git",
15
+ "directory": "packages/biome-config"
16
+ },
17
+ "author": "@bubbly-lab/dev",
18
+ "license": "MIT",
19
+ "exports": {
20
+ "./base.json": "./base.json"
21
+ },
22
+ "peerDependencies": {
23
+ "@biomejs/biome": ">=2"
24
+ }
25
+ }