mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2026-02-04 09:31:23 +01:00
* refactor: migrate names-generator * Update src/types/global.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/modules/index.ts * fix: failing builds after merge * chore: update biome version to 2.3.13 and adjust name validation regex for ASCII characters --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"includes": ["src/**/*.ts"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"style": {
|
|
"useTemplate": {
|
|
"level": "warn",
|
|
"fix": "safe"
|
|
},
|
|
"noNonNullAssertion": "off"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noGlobalIsNan": {
|
|
"level": "error",
|
|
"fix": "safe"
|
|
}
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": {
|
|
"level": "error",
|
|
"fix": "safe"
|
|
},
|
|
"useParseIntRadix": {
|
|
"fix": "safe",
|
|
"level": "error"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|