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
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ charset = utf-8
indent_size = 2
indent_style = space
trim_trailing_whitespace = true

[Makefile]
charset = utf-8
indent_size = 4
indent_style = tab
trim_trailing_whitespace = true
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ about what you're working on, you can contact us via the
- Run

```
php tests/run-tests.php -q --show-diff
make tests
```

to check your change doesn't break other features.
Expand Down Expand Up @@ -118,7 +118,7 @@ Having said that, here are the organizational rules:
5. Test your changes before committing them. We mean it. Really. To do so use

```
php tests/run-tests.php -q --show-diff
make tests
```

6. Use reasonable commit messages.
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: help
help: ## Displays this list of targets with descriptions
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: tests
tests: ## Runs tests
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also see #615.

php tests/run-tests.php -j3 -q