gecko-dev/security/manager/.flake8
Cykesiopka 25866904e6 Bug 1322914 - Enable flake8 linting for security/manager. r=mgoodwin
Various non-conformant B2G related files are simply ignored, since it's not
worth the time to update them to conform.

MozReview-Commit-ID: 5QMbg5pHSbn

--HG--
extra : rebase_source : a133549edc619c2c4fd1d002070d563a145be0d9
2016-12-13 00:25:45 +08:00

15 lines
449 B
INI

[flake8]
# E128: continuation line under-indented for visual indent.
# Best visual indent typically determined based on context.
# E261: at least two spaces before inline comment.
# Not PSM style.
# E302: expected 2 blank lines, found 1.
# Not really PSM style.
ignore = E128,E261,E302
# PSM style is to stick close to 80 chars, but 4 space indentation means we
# sometimes need more space.
max-line-length = 100
filename = *.py