blob: 132841b5d80e0aca78c2c3e2695a46d5e145ca45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash -e
## tools/delint
##
## Automatically fixes lintable mistakes and stylistic problems, where possible.
cd "$(dirname "$0")/.."
npx eslint --fix
cargo fix
cargo clippy --fix
|