-
Notifications
You must be signed in to change notification settings - Fork 0
/
biome.jsonc
50 lines (50 loc) · 1.24 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
50
{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"files": {
"ignoreUnknown": false,
"ignore": [
"**/lib/*",
"**/dist/*",
"**/.astro/*",
"**/coverage/*",
"**/CHANGELOG.md",
"**/node_modules/*",
".husky/",
".nx/cache/",
".nx/workspace-data/",
".all-contributorsrc"
]
},
"formatter": {
"enabled": true,
"indentWidth": 2,
"indentStyle": "tab"
// https://github.com/un-ts/prettier/tree/master/packages/sh
// https://github.com/matzkoh/prettier-plugin-packagejson
// https://github.com/JoshuaKGoldberg/prettier-plugin-curly
},
"organizeImports": { "enabled": true },
"linter": {
"enabled": true
// "rules": { "all": true }
// https://github.com/gajus/eslint-plugin-jsdoc
// https://github.com/ota-meshi/eslint-plugin-yml
// https://github.com/ota-meshi/eslint-plugin-jsonc
// https://github.com/gmullerb/eslint-plugin-regex
// https://github.com/JoshuaKGoldberg/eslint-plugin-package-json
// https://github.com/eslint-community/eslint-plugin-eslint-comments
// https://perfectionist.dev/guide/introduction
// MarkdownLint
},
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single"
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}