forked from yilozt/rounded-window-corners
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbiome.jsonc
49 lines (49 loc) · 1.43 KB
/
biome.jsonc
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://biomejs.dev/schemas/1.7.2/schema.json",
"files": {
"ignore": ["_build/*"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"ignore": ["**/*.d.ts"],
"rules": {
"all": true,
"style": {
"noNamespaceImport": "off",
"noDefaultExport": "off",
"useNamingConvention": {
"level": "warn",
"options": {
"conventions": [
{
// Whitelist some GJS names that don't follow the JS naming conventions
"match": "(?:G[A-Z].*|vfunc_.*|Template|InternalChildren|icon_name|css_classes|draw_value|value_pos|round_digits|Properties|Padding.*|(.*))"
}
]
}
}
},
"performance": {
"noDelete": "off"
},
"suspicious": {
"noConsole": "off",
"noConsoleLog": "off"
}
}
},
"formatter": {
"indentStyle": "space",
"indentWidth": 4
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"bracketSpacing": false,
"arrowParentheses": "asNeeded"
},
"globals": ["global", "log", "logError"]
}
}