diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-10-26 18:01:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 18:01:40 +0200 |
commit | 9c337183c72dfdc7489dea9e62d91ca2663faf43 (patch) | |
tree | 42e25f4e43ba7b38a8f14c6bd0267218592c42b0 | |
parent | aec8dce61acb4e0b6ce1019fd0136fab7885bb23 (diff) | |
parent | c49bf7fa9f54b37ef4fec598f247716fff12ea7c (diff) | |
download | nextcloud-server-9c337183c72dfdc7489dea9e62d91ca2663faf43.tar.gz nextcloud-server-9c337183c72dfdc7489dea9e62d91ca2663faf43.zip |
Merge pull request #34789 from nextcloud/fix/pre-commit-exclude-composer-autoload-from-codestyle
Do not apply codestyle to composer autoloaders
-rw-r--r-- | .pre-commit-config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9ac3616066a..da7428a6407 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,5 +13,5 @@ repos: - id: php-lint - id: php-cs-fixer files: \.(php)$ - exclude: ^(config|data|composer) + exclude: ^(config|data|composer|lib\/composer) args: [] |