diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-07-15 22:38:09 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-08-18 08:58:19 +0200 |
commit | 87d738d9fa53d77e8b26ab1c54d59978ce8ceea7 (patch) | |
tree | da3a6441ab0b975047fb1faa1e9d91e71a2d0d12 /.php_cs.dist | |
parent | dd721fc5de51afa535cfdf8405672d5e2335038a (diff) | |
download | nextcloud-server-87d738d9fa53d77e8b26ab1c54d59978ce8ceea7.tar.gz nextcloud-server-87d738d9fa53d77e8b26ab1c54d59978ce8ceea7.zip |
Exclude stubs from code style check
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to '.php_cs.dist')
-rw-r--r-- | .php_cs.dist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.php_cs.dist b/.php_cs.dist index 0442348cd9d..59781f0f835 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -13,6 +13,7 @@ $config ->exclude('config') ->exclude('data') ->notPath('3rdparty') + ->notPath('build/stubs') ->notPath('composer') ->notPath('vendor') ->in(__DIR__); |