From e6eabd8af6e4cd8a39139e60390c7a2ecb565996 Mon Sep 17 00:00:00 2001 From: martines3000 Date: Wed, 8 May 2024 14:24:57 +0200 Subject: [PATCH] chore: improved biome.json for root folder --- configs/biome.json | 82 ++-------------------------------------------- 1 file changed, 2 insertions(+), 80 deletions(-) diff --git a/configs/biome.json b/configs/biome.json index c17ae5b1a..ccc16176e 100644 --- a/configs/biome.json +++ b/configs/biome.json @@ -1,85 +1,7 @@ { "$schema": "https://biomejs.dev/schemas/1.6.2/schema.json", + "extends": ["../biome.json"], "files": { - "include": [ - "**/*.js", - "**/*.ts", - "**/*.tsx", - "**/*.jsx", - "**/*.json", - "**/*.md", - "**/*.yml", - "**/*.yaml", - "**/*.html" - ], - "ignore": [ - "**/packages/**", - "**/libs/**", - "**/node_modules/**", - "**/dist/**", - "**/build/**", - "**/coverage/**", - "**/.next/**", - "**/files/**", - "**/typia-generated/**", - "**/.docusaurus/**", - "**/out/**", - "patches/**", - "assets/**", - ".changeset/**", - ".nx/**", - "post-process.js" - ] - }, - "organizeImports": { - "enabled": false - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true, - "complexity": { - "noStaticOnlyClass": "off", - "noForEach": "off" - }, - "style": { - "noNonNullAssertion": "off" - }, - "suspicious": { - "noExplicitAny": "off", - "noImplicitAnyLet": "off" - }, - "security": { - "noDangerouslySetInnerHtml": "off" - }, - "correctness": { - "useExhaustiveDependencies": "off" - }, - "a11y": { - "useKeyWithClickEvents": "off" - } - } - }, - "formatter": { - "enabled": true, - "indentStyle": "tab" - }, - "javascript": { - "formatter": { - "indentStyle": "space", - "quoteStyle": "single", - "trailingComma": "es5", - "indentWidth": 2, - "lineEnding": "lf", - "semicolons": "always" - } - }, - "json": { - "formatter": { - "enabled": true, - "indentWidth": 2, - "indentStyle": "space", - "lineEnding": "lf" - } + "ignore": ["**/packages/**", "**/libs/**"] } }