8 lines
115 B
Bash
Executable file
8 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
echo "Lint and clean up typescript:"
|
|
tslint --fix docs/*.ts
|
|
|
|
echo "Cargo clippy"
|
|
cargo clippy
|