From f5cc076250934ecf5ed1a35e42ba314c3463b93c Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Sun, 25 Apr 2021 16:16:28 +0100 Subject: [PATCH] chore: remove un-needed PHP-Commitizen config --- .php-commitizen.php | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .php-commitizen.php diff --git a/.php-commitizen.php b/.php-commitizen.php deleted file mode 100644 index 04d9da8..0000000 --- a/.php-commitizen.php +++ /dev/null @@ -1,30 +0,0 @@ - [ - 'lengthMin' => 1, // Min length of the type - 'lengthMax' => 8, // Max length of the type - 'acceptExtra' => false, // Allow adding types not listed in 'values' key - 'values' => ['feat', 'fix', 'refactor', 'style', 'docs', 'chore', 'test', 'perf', 'build', 'ci'], // All the values usable as type - ], - 'scope' => [ - 'lengthMin' => 0, // Min length of the scope - 'lengthMax' => 10, // Max length of the scope - 'acceptExtra' => true, // Allow adding scopes not listed in 'values' key - 'values' => [], // All the values usable as scope - ], - 'description' => [ - 'lengthMin' => 1, // Min length of the description - 'lengthMax' => 65, // Max length of the description - ], - 'subject' => [ - 'lengthMin' => 1, // Min length of the subject - 'lengthMax' => 80, // Max length of the subject - ], - 'body' => [ - 'wrap' => 72, // Wrap the body at 72 characters - ], - 'footer' => [ - 'wrap' => 72, // Wrap the footer at 72 characters - ], -];