Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ cs-fix:

.PHONY: phpstan
phpstan:
php vendor/bin/phpstan analyse -l 8 -c phpstan.neon src tests
php vendor/bin/phpstan analyse -c phpstan.neon

.PHONY: phpstan-generate-baseline
phpstan-generate-baseline:
php vendor/bin/phpstan analyse -l 8 -c phpstan.neon src tests -b phpstan-baseline.neon
php vendor/bin/phpstan analyse -c phpstan.neon -b phpstan-baseline.neon
5 changes: 5 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ includes:
- phar://phpstan.phar/conf/bleedingEdge.neon

parameters:
level: 8
paths:
- src
- tests

excludePaths:
- tests/*/data/*
- tests/*/data-attributes/*
Expand Down
Loading