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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax <max@nextcloud.com>2022-01-18 12:45:50 +0300
committerMax <max@nextcloud.com>2022-01-18 12:47:20 +0300
commit807c5b30d5ef0a3a0400fed66d44955ad92ce753 (patch)
treeb29c9376eed4af09b2f22359d325c29b3df3f8db /.php_cs.dist
parent9a89308675275d4e584faf8ab732fe5744596378 (diff)
update: Nextcloud Coding Standard to 1.0
The new version uses `.php-cs-fixer.dist.php` instead of `.php_cs.dist`. Signed-off-by: Max <max@nextcloud.com>
Diffstat (limited to '.php_cs.dist')
-rw-r--r--.php_cs.dist19
1 files changed, 0 insertions, 19 deletions
diff --git a/.php_cs.dist b/.php_cs.dist
deleted file mode 100644
index 5cb475d5c..000000000
--- a/.php_cs.dist
+++ /dev/null
@@ -1,19 +0,0 @@
-<?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('lib/Vendor')
- ->notPath('src')
- ->notPath('vendor')
- ->in(__DIR__);
-return $config;