git.delta.rocks / unique-network / refs/commits / 928aa035202a

difftreelog

Add formatting instructions to README

Greg Zaitsev2021-06-25parent: #8ece703.patch.diff
in: master

1 file changed

modifiedREADME.mddiffbeforeafterboth
228## Running Integration Tests228## Running Integration Tests
229229
230See [tests/README.md](./tests/README.md).230See [tests/README.md](./tests/README.md).
231231
232## Code Formatting
233
234### Get formatter and linter settings into your branch (if you forked before they were introduced)
235```bash
236git cherry-pick -n 8ff77c21b0d30b2a4648fa35dbf61dfa9d3948a7
237```
238
239### Apply formatting and clippy fixes
240```bash
241cargo clippy --fix -Z unstable-options --allow-dirty --allow-staged
242cargo fmt
243```
244
245### Format tests
246```bash
247pushd tests && yarn fix ; popd
248```