From 7468bcfef709077ae9a9814c1c39ad9f41963379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 6 Dec 2025 22:57:36 +0100 Subject: [PATCH] Remove PHP code style check instructions Removed code style check instructions for PHP. --- .github/copilot-instructions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index b04bd3f3..637a66b5 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -28,8 +28,6 @@ Part-DB is an Open-Source inventory management system for electronic components - Use type hints for all parameters and return types - Always declare strict types: `declare(strict_types=1);` at the top of PHP files - Use PHPDoc blocks for complex logic or when type information is needed -- Check code style with: `vendor/bin/ecs check src/` or `vendor/bin/ecs check tests/` -- Fix violations with: `vendor/bin/ecs check src/ --fix` ### TypeScript/JavaScript