diff options
author | Joas Schilling <coding@schilljs.com> | 2023-11-23 10:22:52 +0100 |
---|---|---|
committer | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2023-11-23 10:36:13 +0100 |
commit | 272719ed1cba6836ea0a597bb9767754eeb1e0d4 (patch) | |
tree | 851f4f108459032229355b92b1ad77c4f133a58f /.php-cs-fixer.dist.php | |
parent | c196d3789968d78e1c072becfad11015c1c04c1d (diff) | |
download | nextcloud-server-272719ed1cba6836ea0a597bb9767754eeb1e0d4.tar.gz nextcloud-server-272719ed1cba6836ea0a597bb9767754eeb1e0d4.zip |
fix(CI): Also apply codestyle to apps/ folder even when it's VCS ignored itself
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Diffstat (limited to '.php-cs-fixer.dist.php')
-rw-r--r-- | .php-cs-fixer.dist.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 2058f8d0d65..a360624b553 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -20,6 +20,7 @@ $config ->notPath('composer') ->notPath('node_modules') ->notPath('vendor') + ->in('apps') ->in(__DIR__); // Ignore additional app directories |