Skip to content

Commit 1b91a19

Browse files
authored
Integrate React
2 parents 3fda41a + 678b186 commit 1b91a19

File tree

13 files changed

+286
-434
lines changed

13 files changed

+286
-434
lines changed

.zed/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Folder-specific settings
2+
//
3+
// For a full list of overridable settings, and general information on folder-specific settings,
4+
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings
5+
{
6+
"formatter": {
7+
"external": {
8+
"command": "./node_modules/.bin/biome",
9+
"arguments": [
10+
"check",
11+
"--stdin-file-path",
12+
"{buffer_path}",
13+
"--apply"
14+
]
15+
}
16+
}
17+
}

biome.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
33
"organizeImports": {
44
"enabled": true
55
},
@@ -15,5 +15,8 @@
1515
"indentWidth": 4,
1616
"lineWidth": 120
1717
}
18+
},
19+
"files": {
20+
"ignore": [".zed"]
1821
}
1922
}

0 commit comments

Comments
 (0)