comparison setup.cfg @ 2109:90ab79764ce4 mercurial-4.0

mercurial-4.0: merge with future 6.0.0 A new version will be released soon, we start handling mismatch in test output to make the actual release time smoother.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Tue, 14 Mar 2017 14:38:10 -0700
parents b81d3775006b
children
comparison
equal deleted inserted replaced
1815:ee2d5716ef0a 2109:90ab79764ce4
1 [flake8]
2 ignore =
3 #closing bracket does not match indentation of opening bracket's line
4 E123,
5 # closing bracket does not match visual indentation
6 E124,
7 # visually indented line with same indent as next logical line
8 E129,
9 # at least two spaces before inline comment
10 E261,
11 # too many leading '#' for block comment
12 E266,
13 # expected 2 blank lines, found 0
14 E302,
15 # expected 2 blank lines after end of function or class
16 E305,
17 # module level import not at top of file
18 E402,
19 # line too long (82 > 79 characters)
20 E501,
21 # do not assign a lambda expression, use a def
22 E731,
23 # class names should use CapWords convention
24 N801,
25 # line break occurred before a binary operator
26 W503
27 builtins=xrange, execfile
28