diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-04-15 18:30:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 18:30:28 +0200 |
commit | 018a2917c1cb293386b1dd49303990e7cb4de7be (patch) | |
tree | 68c9d25826c5e1ad0f70c7c1ec46cfebc88c328a | |
parent | 8bc381f1040a207dd090fccc26531ad79f355916 (diff) | |
parent | 0b652d543b26c569e7a1b0a1d8595d3e9f40bfd9 (diff) | |
download | nextcloud-server-018a2917c1cb293386b1dd49303990e7cb4de7be.tar.gz nextcloud-server-018a2917c1cb293386b1dd49303990e7cb4de7be.zip |
Merge pull request #20502 from nextcloud/techdebt/cs-check-diff
Print diff in cs:check command
-rw-r--r-- | composer.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 7707ac537cf..ee73b60f431 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ }, "scripts": { "cs:fix": "php-cs-fixer fix", - "cs:check": "php-cs-fixer fix --dry-run", + "cs:check": "php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/.phan/*' -exec php -l \"{}\" \\;" } } |