mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
17 lines
320 B
Bash
Executable File
17 lines
320 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
node_modules/.bin/prettier -w "**/*.md"
|
|
|
|
# biome
|
|
#pnpm biome check --write --unsafe --colors=off --log-level=info --log-kind=pretty . | grep path | sort
|
|
pnpm biome check --write --unsafe .
|
|
|
|
ruff check --fix .
|
|
ruff format .
|
|
|
|
find . -type f -name '*.conf' -path '*/nginx*' -exec nginxfmt -v {} +;
|
|
|
|
|
|
|