Files
GMW/biome.json
T

71 lines
1.4 KiB
JSON
Raw Normal View History

2026-05-13 15:20:43 +07:00
{
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
2026-05-13 15:28:25 +07:00
"files": {
"includes": [
"src/**/*.ts",
"tests/**/*.ts",
"services/**/*.ts",
"services/**/*.tsx",
"packages/**/*.ts",
"*.json",
"*.ts",
2026-07-26 12:01:51 +07:00
"!vendor",
"!.claude",
"!services/**/dist",
"!packages/**/dist",
"!services/**/.next",
"!services/**/out"
]
2026-05-13 15:28:25 +07:00
},
2026-05-13 15:20:43 +07:00
"formatter": {
"enabled": true,
"indentStyle": "space",
2026-05-13 15:28:25 +07:00
"indentWidth": 2
2026-05-13 15:20:43 +07:00
},
"linter": {
"enabled": true,
"rules": {
"preset": "recommended",
2026-05-13 15:28:25 +07:00
"style": {
"noNonNullAssertion": "warn",
"useNodejsImportProtocol": "warn"
},
"suspicious": {
"noUnknownAtRules": "off",
"useIterableCallbackReturn": "off",
"noArrayIndexKey": "warn"
},
"a11y": {
"useButtonType": "off",
"noAutofocus": "off"
},
"performance": {
"noImgElement": "warn"
},
"security": {
"noDangerouslySetInnerHtml": "warn"
},
"correctness": {
"noInvalidUseBeforeDeclaration": "off",
"noUnusedFunctionParameters": "warn"
}
},
"domains": {
"next": "recommended",
"react": "recommended"
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
2026-05-13 15:28:25 +07:00
}
}
2026-05-13 15:20:43 +07:00
}
}