mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 01:00:50 -04:00
Merge pull request #10599 from nextcloud/fix/app-code-checker-ignore-build-dir
Fix app code checker to ignore `build` directory
This commit is contained in:
commit
b4e282e477
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ class CodeChecker extends BasicEmitter {
|
|||
public function analyseFolder(string $appId, string $folder): array {
|
||||
$errors = [];
|
||||
|
||||
$excludedDirectories = ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test'];
|
||||
$excludedDirectories = ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test', 'build'];
|
||||
if ($appId === 'password_policy') {
|
||||
$excludedDirectories[] = 'lists';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue