Files
discordeno/biome.jsonc
dependabot[bot] 5828bfc554 build(deps-dev): bump @biomejs/biome from 2.4.8 to 2.4.9 in /website (#4895)
* build(deps-dev): bump @biomejs/biome from 2.4.8 to 2.4.9 in /website

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.4.8 to 2.4.9.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.9/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump biome

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fleny <fleny113@outlook.com>
2026-04-02 10:48:24 +02:00

69 lines
1.4 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"root": true,
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 150
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": false,
"correctness": {
"noUnusedVariables": "error",
"noUnusedImports": "error"
},
"style": {
"noNamespace": "error",
"noNonNullAssertion": "off",
"useImportType": "error",
"useConsistentArrayType": {
"level": "error",
"options": { "syntax": "shorthand" }
}
}
}
},
"javascript": {
"formatter": {
"trailingCommas": "all",
"quoteStyle": "single"
}
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
}
},
"files": {
"includes": [
"**",
// Ignore the package.json and leave yarn to format it
"!**/package.json",
"!**/node_modules",
// Ignore turbo and docusaurus cache/stuff
"!**/.docusaurus",
"!**/.turbo",
// Remove the yarn script as it is minified,
"!**/.yarn",
// Ignore build outputs
"!**/build",
"!**/coverage",
"!**/dist"
],
"ignoreUnknown": true
}
}