From 407bc140823adac8414e128ea98fe2e72f39599b Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 13 May 2024 09:39:45 +0200 Subject: [PATCH] feat: Add new biome configuration file The commit introduces a new configuration file, biome.json, for managing imports, file inclusions, git features, linting rules, and formatting settings. This file defines settings for our project such as enabling organizing imports, specifying to include all TypeScript files in the src directory, enabling version control system using git, enabling linting with specific rules, and setting indents and line width for the formatter. --- biome.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..82c7743 --- /dev/null +++ b/biome.json @@ -0,0 +1,33 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.6.4/schema.json", + "organizeImports": { + "enabled": true + }, + "files": { + "include": [ + "./src/**/*.ts" + ] + }, + "vcs": { + "enabled": true, + "clientKind": "git" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "performance": { + "recommended": true, + "noDelete": "off" + }, + "complexity": { + "useLiteralKeys": "off" + } + } + }, + "formatter": { + "indentStyle": "tab", + "indentWidth": 2, + "lineWidth": 80 + } +} \ No newline at end of file