2026-07-14 19:09:47 +03:00
|
|
|
{
|
|
|
|
|
"$schema": "https://biomejs.dev/schemas/2.5.3/schema.json",
|
|
|
|
|
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
|
|
|
|
|
"files": { "includes": ["src/**/*", "*.js", "*.json"] },
|
|
|
|
|
"formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 120 },
|
2026-07-18 10:55:11 +03:00
|
|
|
"linter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"rules": {
|
|
|
|
|
"recommended": true,
|
|
|
|
|
"correctness": {
|
|
|
|
|
"noUndeclaredVariables": "error"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-07-14 19:09:47 +03:00
|
|
|
"javascript": {
|
2026-07-18 10:55:11 +03:00
|
|
|
"globals": ["describe", "it", "expect"],
|
2026-07-14 19:09:47 +03:00
|
|
|
"formatter": {
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"semicolons": "always",
|
|
|
|
|
"trailingCommas": "all"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|