1{
2 "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3 "vcs": {
4 "enabled": false,
5 "clientKind": "git",
6 "useIgnoreFile": false
7 },
8 "files": {
9 "ignoreUnknown": false,
10 "ignore": [
11 ".nuxt/**/*",
12 "node_modules/**/*",
13 ".data/**/*",
14 ".output/**/*",
15 "dist/**/*"
16 ]
17 },
18 "formatter": {
19 "enabled": true,
20 "attributePosition": "auto",
21 "indentStyle": "space",
22 "indentWidth": 4,
23 "lineWidth": 80,
24 "lineEnding": "lf"
25 },
26 "organizeImports": {
27 "enabled": true
28 },
29 "linter": {
30 "enabled": true,
31 "rules": {
32 "recommended": true
33 }
34 },
35 "javascript": {
36 "formatter": {
37 "arrowParentheses": "always",
38 "bracketSameLine": false,
39 "bracketSpacing": true,
40 "jsxQuoteStyle": "double",
41 "quoteProperties": "asNeeded",
42 "semicolons": "always",
43 "trailingCommas": "none"
44 }
45 },
46 "json": {
47 "formatter": {
48 "trailingCommas": "none"
49 }
50 }
51}