blob: 4de0a30c260f5fbd534cce0b270c5ac379adcedd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[mypy]
files = Tools/wasm/wasm_*.py
pretty = True
show_traceback = True
# Make sure the wasm can be run using Python 3.8:
python_version = 3.8
# Be strict...
strict = True
enable_error_code = truthy-bool,ignore-without-code
|