Files
wasmtime/meta/check-py3k.sh
Jakob Stoklund Olesen 3e40c3e454 Flake8 lints.
2016-08-26 09:45:10 -07:00

9 lines
199 B
Bash
Executable File

#!/bin/bash
# Check Python sources for Python 3 compatibility using pylint.
#
# Install pylint with 'pip install pylint'.
cd $(dirname "$0")
pylint --py3k --reports=no -- *.py cretonne isa
flake8 .