https://github.com/kripken/emscripten
Raw File
Tip revision: 1690a5802cd1241adc9714fb7fa2f633d38860dc authored by Sam Clegg on 30 January 2021, 02:29:24 UTC
2.0.13 (#13391)
Tip revision: 1690a58
.flake8
[flake8]
ignore = E111,E114,E501,E261,E266,E121,E402,E241,W504
exclude =
 ./third_party/, # third-party code
 ./tools/filelock.py, # third-party code
 ./tools/scons/, # third-party code
 ./tests/third_party/, # third-party code
 ./site/source/conf.py,
 ./tools/debug/,
 ./tools/webidl_binder.py,
 ./tools/ffdb.py,
 ./system/lib/, # system libraries
 ./cache/, # download/built content
 .git
# The ports plugins have a lot of unused imports becuase
# they need to implement the specific plugin APIs
per-file-ignores =
  ./tools/ports/*.py: U100
  ./tests/*.py: U100
  ./tools/toolchain_profiler.py: U100
back to top