From bbba29546cf0934e25d6c2b0e20d746e637a173a Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Sun, 16 Jun 2024 17:20:14 -0400 Subject: [PATCH] fix biome ignore --- biome.json | 87 +++++++++++++++++++++++++++--------------------------- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/biome.json b/biome.json index eff2ec80..6329765b 100644 --- a/biome.json +++ b/biome.json @@ -1,47 +1,48 @@ { - "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", - "organizeImports": { - "enabled": true - }, - "files": { - "ignore": [ - "node_modules", - "dist", - ".next/", - "favicon-formats.ts", - "custom.*[js, html]", - "hyperglass.json" - ] - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true, - "complexity": { - "noUselessTypeConstraint": "off", - "noBannedTypes": "off" - }, - "style": { - "noInferrableTypes": "off", - "noNonNullAssertion": "off" - }, - "correctness": { - "useExhaustiveDependencies": "off" - } - } - }, - "formatter": { - "indentStyle": "space", - "lineWidth": 100, - "indentWidth": 2 - }, - "javascript": { + "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", + "organizeImports": { + "enabled": true + }, + "files": { + "ignore": [ + "node_modules", + "dist", + ".next/", + "out/", + "favicon-formats.ts", + "custom.*[js, html]", + "hyperglass.json" + ] + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "complexity": { + "noUselessTypeConstraint": "off", + "noBannedTypes": "off" + }, + "style": { + "noInferrableTypes": "off", + "noNonNullAssertion": "off" + }, + "correctness": { + "useExhaustiveDependencies": "off" + } + } + }, "formatter": { - "quoteStyle": "single", - "bracketSpacing": true, - "semicolons": "always", - "arrowParentheses": "asNeeded", - "trailingComma": "all" + "indentStyle": "space", + "lineWidth": 100, + "indentWidth": 2 + }, + "javascript": { + "formatter": { + "quoteStyle": "single", + "bracketSpacing": true, + "semicolons": "always", + "arrowParentheses": "asNeeded", + "trailingComma": "all" + } } - } }