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

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-02-22 10:02:14 +0300
committerGitHub <noreply@github.com>2022-02-22 10:02:14 +0300
commit24c185788b2de143b3c3a6af1488b351a08031fd (patch)
tree7f300d326c1bce239ac820dd9d09e6d1a7bd64da /.php-cs-fixer.dist.php
parent9ddb3f5104f4c09c2b51c2ca6e6a25972faa4fac (diff)
Rename .php_cs.dist to .php-cs-fixer.dist.php
Diffstat (limited to '.php-cs-fixer.dist.php')
-rw-r--r--.php-cs-fixer.dist.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
new file mode 100644
index 0000000..f7bbdd8
--- /dev/null
+++ b/.php-cs-fixer.dist.php
@@ -0,0 +1,18 @@
+<?php
+
+declare(strict_types=1);
+
+require_once './vendor/autoload.php';
+
+use Nextcloud\CodingStandard\Config;
+
+$config = new Config();
+$config
+ ->getFinder()
+ ->ignoreVCSIgnored(true)
+ ->notPath('build')
+ ->notPath('l10n')
+ ->notPath('src')
+ ->notPath('vendor')
+ ->in(__DIR__);
+return $config;