From 68282a15d09cf6ceb5dbc10996015c263a664d3c Mon Sep 17 00:00:00 2001 From: andrey-helldar <10347617+andrey-helldar@users.noreply.github.com> Date: Sat, 30 Aug 2025 01:05:48 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=8B=20The=20code=20style=20has=20been?= =?UTF-8?q?=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- biome.json | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ composer.json | 1 + 2 files changed, 55 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..5ae7a48 --- /dev/null +++ b/biome.json @@ -0,0 +1,54 @@ +{ + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", + "vcs": { + "enabled": false, + "clientKind": "git", + "useIgnoreFile": false + }, + "files": { + "ignoreUnknown": false, + "includes": [ + "**", + "!node_modules", + "!vendor", + "!composer.json", + "!composer.lock", + "!package.json", + "!package-lock.json" + ] + }, + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 4 + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "javascript": { + "formatter": { + "quoteStyle": "double" + } + }, + "json": { + "formatter": { + "enabled": true, + "bracketSpacing": true, + "expand": "always" + }, + "parser": { + "allowComments": true + } + }, + "assist": { + "enabled": true, + "actions": { + "source": { + "organizeImports": "on" + } + } + } +} diff --git a/composer.json b/composer.json index 6988b44..82b50c3 100644 --- a/composer.json +++ b/composer.json @@ -41,6 +41,7 @@ "config": { "allow-plugins": { "ergebnis/composer-normalize": true, + "laravel/pint": true, "pestphp/pest-plugin": true } },