Remove admin folder from linter (#3708)

This commit is contained in:
jekkos
2024-05-10 00:49:10 +02:00
committed by jekkos
parent 24772f856f
commit 46009b2062
2 changed files with 1 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ jobs:
- name: Install dependencies
run: composer update --ansi --no-interaction
- name: Run lint on `app/`, `admin/`, `public/`
- name: Run lint on `app/`, `public/`
run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --config=.php-cs-fixer.no-header.php --using-cache=no --diff
- name: Run lint on `tests`

View File

@@ -20,7 +20,6 @@ use PhpCsFixer\Finder;
$finder = Finder::create()
->files()
->in([
__DIR__ . '/admin',
__DIR__ . '/app',
__DIR__ . '/public',
])