Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/tools/maint/pre-push
4150 views
#!/bin/sh
#
# Git pre-push script that runs some quick/simple tests.
#
# This script can be installed using `./boostrap -i`.

set -o errexit

# Keep these check in sync with `ruff` rule in  .circleci/config.yml
ruff check -q
ruff check --preview --select=E20,E30,E221,E225,E226