mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
9 lines
115 B
Bash
Executable File
9 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
|