-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbiome.jsonc
54 lines (54 loc) · 1.3 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
51
52
53
54
/**
* ICASU_NOTE: Biomeのvscodeプラグインはワークスペース対応していない。開発生産性のため、formatOnSaveやLSPのサポートを重要視する場合、継承を使ったワークススペース毎のconfig設定をすることを推奨しない。eslintやprettierを推奨する。
* https://github.com/biomejs/biome-vscode/issues/201
*/
{
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "es5"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": {
"level": "error"
},
"noUnusedVariables": {
"level": "error"
}
},
"suspicious": {
"noExplicitAny": "warn"
},
"complexity": {
"noUselessConstructor": "off"
},
"style": {
"noUselessElse": "off",
"noUnusedTemplateLiteral": "off",
"noNonNullAssertion": "off"
}
}
},
"files": {
"ignore": [
"node_modules",
// iac
"dist",
"cdk.out",
// server
"src/graphql.ts" // 自動生成ファイルのため
]
}
}