Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
[flake8]
ignore = E111,E114,E501,E261,E266,E121,E402,E241,E701,
E722 # We have a bunch of base 'excepts' still
filename = ./emsdk.py, ./test.py
exclude = \
ignore =
E111, # Indentation is not a multiple of four
E114, # Indentation is not a multiple of four (comment)
E501, # Line too long
E261, # At least two spaces before inline comment
E121, # Continuation line under-indented for hanging indent
E722 # bare excepts
exclude =
./gnu
./upstream
./fastcomp
./releases
./clang
./emscripten
./binaryen
./git
./node
./python
Expand Down
Loading