Exclude vendor-php dir for coding-standard-check

This commit is contained in:
sagargurung1001@gmail.com
2022-09-06 12:29:11 +05:45
parent 5655fb7014
commit 6fd610f3ca
+2 -1
View File
@@ -4,7 +4,8 @@ $dirToParse = 'tests/acceptance/';
$dirIterator = new DirectoryIterator(__DIR__ . '/' . $dirToParse);
$excludeDirs = [
'node_modules'
'node_modules',
'vendor-php'
];
$finder = PhpCsFixer\Finder::create()