forked from solana-developers/program-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.jsonc
More file actions
27 lines (27 loc) · 654 Bytes
/
Copy pathbiome.jsonc
File metadata and controls
27 lines (27 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"files": {
"includes": ["**", "!**/Assets"]
},
"formatter": {
// Matches more existing code,
// also 2 spaces is used by: Prettier, StandardJS, AirBnB,
// Google JavaScript Style Guide, node.js style guide,
// deno fmt, MDN, and idiomatic.js.
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120
},
"javascript": {
"formatter": {
// Also to match Prettier, Google, etc.
// (though standard and AirBnB use single)
"quoteStyle": "double"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}