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

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-08-02 18:29:02 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-08-02 18:29:02 +0300
commit86df76f48f6646656a8094e0de0ae1956fd565d9 (patch)
treebfd22a9f528dabae7a0b7612a6db6ce63c932fc0 /.php-cs-fixer.dist.php
parent9ee5aa0e02749c5538141213c81184834d06d7ca (diff)
Ignore vendor-bin folder in PHP code snifferfix/add-workflows
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.php-cs-fixer.dist.php')
-rw-r--r--.php-cs-fixer.dist.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
index a68d640..135545a 100644
--- a/.php-cs-fixer.dist.php
+++ b/.php-cs-fixer.dist.php
@@ -13,6 +13,7 @@ $config
->notPath('l10n')
->notPath('src')
->notPath('vendor')
+ ->notPath('vendor-bin')
->notPath('node_modules')
->in(__DIR__);
return $config;