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
parent2dfb38410a6db60d9827d6356d05daeedae9f6c8 (diff)
Fix linter command
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/lint.yml2
-rw-r--r--composer.json3
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 826ffddec..34e9d1787 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -26,7 +26,7 @@ jobs:
coverage: none
- name: Lint
- run: "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
+ run: composer run lint || ( echo 'Please run `composer run lint` and fix your code' && exit 1 )
php-cs-fixer:
name: php-cs check
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"