git.delta.rocks / unique-network / refs/commits / 4afa738abcfc

difftreelog

Update linter and formatter commands in README

Greg Zaitsev2021-06-30parent: #447f057.patch.diff
in: master

1 file changed

modifiedREADME.mddiffbeforeafterboth
238238
239### Apply formatting and clippy fixes239### Apply formatting and clippy fixes
240```bash240```bash
241cargo clippy --fix -Z unstable-options --allow-dirty --allow-staged241cargo clippy
242cargo fmt242cargo fmt
243```243```
244244
245### Format tests245### Format tests
246```bash246```bash
247pushd tests && yarn fix ; popd247pushd tests && yarn fix ; popd
248```
249
250### Check code style in tests
251```bash
252cd tests && yarn eslint --ext .ts,.js src/
248```253```