Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-05-13 14:36:51 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-13 14:39:52 +0300
commite068bc3d09b18491004cec778e6bda43529d286b (patch)
tree524a530bdfc4266946e20f2b59120f175205cad3 /composer.json
parent2dfb38410a6db60d9827d6356d05daeedae9f6c8 (diff)
Fix linter command
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index e24197271..1c5cd09ae 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,8 @@
{
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
- "cs:fix": "php-cs-fixer fix"
+ "cs:fix": "php-cs-fixer fix",
+ "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -not -path './tests/integration/vendor/*' -print0 | xargs -0 -n1 php -l"
},
"require-dev": {
"nextcloud/coding-standard": "^0.3.0"