- All repositories contains pre-commit hooks to "fail early".
If some test fails or code standards are not met, it will prevent
commit to repository.
- However if you want to commit even so, you can commit with
git commit --no-verify
- However if you want to commit even so, you can commit with
All new contributions should have its unit tests in /tests directory.
Before you send a PR, please, check all tests pass.
This package uses Nette Tester. You can run tests via command:
composer testBefore PR, please run complete code check via command:
composer cs:install # only first time
composer fix # otherwise pre-commit hook can fail