Skip to content

Commit 0bcd815

Browse files
authored
Trim trailing white space throughout the project (grosser#858)
Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines.
1 parent 5e459d8 commit 0bcd815

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Thank you for your contribution!
33
## Checklist
44
- [ ] Feature branch is up-to-date with `master` (if not - rebase it).
55
- [ ] Added tests.
6-
- [ ] Added an entry to the [Changelog](../blob/master/CHANGELOG.md) if the new
6+
- [ ] Added an entry to the [Changelog](../blob/master/CHANGELOG.md) if the new
77
code introduces user-observable changes.
88
- [ ] Update Readme.md when cli options are changed

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test:
4242
4343
### Setup environment from scratch (create db and loads schema, useful for CI)
4444
rake parallel:setup
45-
45+
4646
### Drop all test databases
4747
rake parallel:drop
4848
@@ -193,15 +193,15 @@ Setup for non-rails
193193
- use `ENV['TEST_ENV_NUMBER']` inside your tests to select separate db/memcache/etc. (docker compose: expose it)
194194

195195
- Only run a subset of files / folders:
196-
196+
197197
`parallel_test test/bar test/baz/foo_text.rb`
198198

199199
- Pass test-options and files via `--`:
200-
200+
201201
`parallel_rspec -- -t acceptance -f progress -- spec/foo_spec.rb spec/acceptance`
202-
202+
203203
- Pass in test options, by using the -o flag (wrap everything in quotes):
204-
204+
205205
`parallel_cucumber -n 2 -o '-p foo_profile --tags @only_this_tag or @only_that_tag --format summary'`
206206

207207
Options are:

0 commit comments

Comments
 (0)