~ubuntu-branches/debian/sid/guake/sid

« back to all changes in this revision

Viewing changes to pep8rc

  • Committer: Package Import Robot
  • Author(s): Daniel Echeverry
  • Date: 2015-04-26 19:15:06 UTC
  • mfrom: (1.1.7)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20150426191506-mo8037vk6pueer5b
Tags: upstream-0.7.0
ImportĀ upstreamĀ versionĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# List of currently ignored PEP8 issues.  Some of them definetely should be
8
8
# enabled in future.
9
9
#
10
 
# E122 continuation line missing indentation or outdented
11
 
# E126 continuation line over-indented for hanging indent
12
 
# E128 continuation line under-indented for visual indent
13
 
# E211 whitespace before '('
14
 
# E501 line too long (102 > 100 characters)
15
 
# E711 comparison to None should be 'if cond is None:'
16
 
# E712 comparison to False should be 'if cond is False:' or 'if not cond:'
17
 
# E721 do not compare types, use 'isinstance()'
18
10
 
19
 
ignore = E122,E126,E128,E211,E501,E711,E712,E721
 
11
ignore = E731,E402
 
12
# E731: ignore use def instead of lambda assignation
 
13
# E402: ignore module level import not at top of file