From 3dfee64e8e4c26b506fafcc6f4d2154dc0f35c1d Mon Sep 17 00:00:00 2001 From: Mathis Date: Wed, 12 Jun 2024 09:49:28 +0200 Subject: [PATCH] feat: Add new biome.json configuration file This commit introduces a new biome.json file which contains configuration for organizing imports, included files, version control, linter rules and formatting parameters. It's intended to optimize code quality checks and make the codebase more maintainable. --- biome.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..242b0dc --- /dev/null +++ b/biome.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.6.4/schema.json", + "organizeImports": { + "enabled": true + }, + "files": { + "include": [ + "./src/**/*.ts", + "./src/**/*.tsx" + ] + }, + "vcs": { + "enabled": true, + "clientKind": "git" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "performance": { + "recommended": true, + "noDelete": "off" + }, + "suspicious": { + "noExplicitAny": "warn" + }, + "complexity": { + "useLiteralKeys": "off" + } + } + }, + "formatter": { + "indentStyle": "tab", + "indentWidth": 2, + "lineWidth": 90 + } +} \ No newline at end of file