difftreelog
Add formatting instructions to README
in: master
1 file changed
README.mddiffbeforeafterboth228## Running Integration Tests228## Running Integration Tests229229230See [tests/README.md](./tests/README.md).230See [tests/README.md](./tests/README.md).231231232## Code Formatting233234### Get formatter and linter settings into your branch (if you forked before they were introduced)235```bash236git cherry-pick -n 8ff77c21b0d30b2a4648fa35dbf61dfa9d3948a7237```238239### Apply formatting and clippy fixes240```bash241cargo clippy --fix -Z unstable-options --allow-dirty --allow-staged242cargo fmt243```244245### Format tests246```bash247pushd tests && yarn fix ; popd248```