This website requires JavaScript.
Explore
Help
Sign In
SiegfriedSiegert
/
PTU5KAS
Watch
1
Star
0
Fork
0
You've already forked PTU5KAS
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
412241b32c
PTU5KAS
/
.flake8
4 lines
40 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add flake8 config When running the checkcode.sh script, if no flake8 config file is present then all error codes will be emitted. This may include error codes from flake8 plugins installed locally which are not relevant for this project (such as the flake8-black plugin). To prevent this issue we add a flake8 config file which enables the built-in error codes C, E, F and W. Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
2020-06-15 23:03:02 +02:00
[flake8]
select = C,E,F,W
flake8: Ignore obsolete warning W503 "Line break occurred before a binary operator (W503)" goes against PEP8 and has been superseded by W504. See https://www.flake8rules.com/rules/W503.html. Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
2020-11-13 19:34:48 +01:00
ignore = W503
Reference in New Issue
Copy Permalink