Skip to content

Commit

Permalink
Merge pull request #621 from nextcloud/fix/cs-fixer
Browse files Browse the repository at this point in the history
Do not only filter but exclude paths from search
  • Loading branch information
christianlupus authored Feb 27, 2021
2 parents ff20188 + 8200283 commit 2af8d49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ $config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->exclude('build')
->exclude('l10n')
// ->notPath('lib/Vendor')
->notPath('src')
->notPath('node_modules')
->notPath('vendor')
->notPath('.github')
->exclude('src')
->exclude('node_modules')
->exclude('vendor')
->exclude('.github')
->in(__DIR__);
return $config;

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
[#615](https://github.com/nextcloud/cookbook/pull/615) @seyfeb
- Avoid daily issues in personal forks due to missing secrets
[#620](https://github.com/nextcloud/cookbook/pull/620) @christianlupus
- Avoid descending of CS_fixer into non-code folders
[#621](https://github.com/nextcloud/cookbook/pull/621) @christianlupus

## Deprecated
- Obsolete routes to old user interface, see `appinfo/routes.php`
Expand Down

0 comments on commit 2af8d49

Please sign in to comment.