https://gitlab.com/tezos/tezos
Raw File
Tip revision: 2a8e51a5c01ede893c7fd346df7845890df91308 authored by Corneliu Hoffman on 02 September 2022, 14:29:20 UTC
fixup! fixup! SCORU/WASM: the checks moved into the sc_rollup_game_repr.
Tip revision: 2a8e51a
lint-all-ocaml-sources.sh
#!/bin/sh

# We can't do linting on frozen protocol (src/proto_*/lib_protocol/*.ml) but we
# can still do it on the in-development protocol
# (src/proto_alpha/lib_protocol/*.ml). The `exclude` pattern below expresses
# this.
semgrep \
  --metrics=off \
  --error \
  -l ocaml \
  -c scripts/semgrep/ \
  --exclude "src/proto_[0-9]*/lib_protocol/*.ml*" \
  --exclude "src/lib_webassembly/*" \
  src/
back to top