difftreelog
Update linter and formatter commands in README
in: master
1 file changed
README.mddiffbeforeafterboth238238239### Apply formatting and clippy fixes239### Apply formatting and clippy fixes240```bash240```bash241cargo clippy --fix -Z unstable-options --allow-dirty --allow-staged241cargo clippy242cargo fmt242cargo fmt243```243```244244245### Format tests245### Format tests246```bash246```bash247pushd tests && yarn fix ; popd247pushd tests && yarn fix ; popd248```249250### Check code style in tests251```bash252cd tests && yarn eslint --ext .ts,.js src/248```253```