Files
tiennm99 9670f85d2a chore(repo): ignore .claude/ local agent state
The directory holds machine-local memory and session-scoped permission
overrides; never belongs in the tree.
2026-05-07 15:06:23 +07:00

42 lines
813 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off",
"useTemplate": "off"
},
"suspicious": {
"noConsoleLog": "off"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "all"
}
},
"files": {
"ignore": [
"node_modules",
".wrangler",
".claude",
"dist",
"coverage",
"src/modules/loldle/champions.json",
"src/modules/wordle/words-data.js"
]
}
}