summaryrefslogtreecommitdiff
path: root/docs/biome.jsonc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/biome.jsonc')
-rw-r--r--docs/biome.jsonc55
1 files changed, 0 insertions, 55 deletions
diff --git a/docs/biome.jsonc b/docs/biome.jsonc
deleted file mode 100644
index ac66012..0000000
--- a/docs/biome.jsonc
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- "$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
- "files": {
- "ignoreUnknown": true,
- "includes": [
- ".vitepress/config.mts",
- "biome.jsonc",
- ".vitepress/config/**",
- ".vitepress/theme/*.ts"
- ]
- },
- "formatter": {
- "enabled": true,
- "formatWithErrors": false,
- "indentStyle": "space",
- "indentWidth": 2,
- "lineEnding": "lf",
- "lineWidth": 80,
- "attributePosition": "auto"
- },
- "javascript": {
- "formatter": {
- "jsxQuoteStyle": "double",
- "quoteProperties": "asNeeded",
- "trailingCommas": "all",
- "semicolons": "always",
- "arrowParentheses": "always",
- "bracketSpacing": true,
- "bracketSameLine": false,
- "quoteStyle": "single",
- "attributePosition": "auto"
- }
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true,
- "suspicious": {
- "noShadowRestrictedNames": "off"
- },
- "style": {
- "noParameterAssign": "error",
- "useAsConstAssertion": "error",
- "useDefaultParameterLast": "error",
- "useEnumInitializers": "error",
- "useSelfClosingElements": "error",
- "useSingleVarDeclarator": "error",
- "noUnusedTemplateLiteral": "error",
- "useNumberNamespace": "error",
- "noInferrableTypes": "error",
- "noUselessElse": "error"
- }
- }
- }
-}