@yuu1111/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 +19 -0
  2. package/package.json +16 -0
  3. package/shared.json +38 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @yuu1111/biome-config
2
+
3
+ Shared [Biome](https://biomejs.dev/) configuration.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ bun add -D @yuu1111/biome-config
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```json
14
+ // biome.json
15
+ {
16
+ "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
17
+ "extends": ["@yuu1111/biome-config/biome"]
18
+ }
19
+ ```
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@yuu1111/biome-config",
3
+ "version": "1.0.0",
4
+ "description": "Shared Biome configuration",
5
+ "license": "MIT",
6
+ "exports": {
7
+ "./biome": "./shared.json"
8
+ },
9
+ "files": [
10
+ "shared.json"
11
+ ],
12
+ "keywords": [
13
+ "biome",
14
+ "config"
15
+ ]
16
+ }
package/shared.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
3
+ "vcs": {
4
+ "enabled": false,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": false
7
+ },
8
+ "files": {
9
+ "ignoreUnknown": false
10
+ },
11
+ "formatter": {
12
+ "enabled": true,
13
+ "indentStyle": "tab"
14
+ },
15
+ "linter": {
16
+ "enabled": true,
17
+ "rules": {
18
+ "recommended": true,
19
+ "performance": {
20
+ "noBarrelFile": "error",
21
+ "noReExportAll": "error"
22
+ }
23
+ }
24
+ },
25
+ "javascript": {
26
+ "formatter": {
27
+ "quoteStyle": "double"
28
+ }
29
+ },
30
+ "assist": {
31
+ "enabled": true,
32
+ "actions": {
33
+ "source": {
34
+ "organizeImports": "on"
35
+ }
36
+ }
37
+ }
38
+ }