JS tooling breaks at the slightest whiff of nonstandard setups. God forbid you set up your js project in a subdirectory of the repository instead of in the root...
5 lines
81 B
Bash
Executable file
5 lines
81 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
pnpm prettier . --check
|
|
cargo fmt --check
|