mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-11 16:32:59 +00:00
25866904e6
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
15 lines
449 B
INI
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
|