forked from ArduPilot/ardupilot_wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb68c47
commit 7f53bf1
Showing
8 changed files
with
234 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[flake8] | ||
ignore = | ||
# H301: one import per line | ||
H301, | ||
# H306: imports not in alphabetical order (time, os) | ||
H306, | ||
# E226: missing whitespace around arithmetic operator | ||
E226, | ||
# E261 at least two spaces before inline comment | ||
E261, | ||
# W504 line break after binary operator | ||
W504, | ||
# E203 whitespace before ':' | ||
E203, | ||
# E221 multiple spaces before operator | ||
E221 | ||
|
||
max-line-length = 127 | ||
|
||
exclude = .git,__pycache__,conf.py,old,build,dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.