Fix app code checker to ignore `build` directory
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
7648bb05e9
commit
201cbf2d33
|
@ -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 New Issue