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

« back to all changes in this revision

Viewing changes to pylintrc

  • 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:
29
29
 
30
30
# Following are the checks we don't care about, and thus should remain disabled
31
31
#
32
 
# C0102: Black listed name "%s"
33
32
# C0111: Missing docstring
34
33
# C0302: Too many lines in module (%s)*
35
34
# R0201: Method could be a function*
49
48
# W0142: Used * or ** magic
50
49
# W0402: Uses of a deprecated module %r
51
50
# W0511: FIXME or XXX is detected
52
 
# W0601: Global variable %r undefined at the module level
53
51
# W0613: Unused argument %r
54
52
# W0633: Attempting to unpack a non-sequence
55
 
# E1103: %s %r has no %r member (but some types could not be inferred)
56
53
 
57
54
disable=
58
 
  C0102,
59
55
  C0103,
60
56
  C0111,
61
57
  C0302,
74
70
  R0922,
75
71
  W0402,
76
72
  W0511,
77
 
  W0601,
78
73
  W0613,
79
 
  E1103,
80
74
  I0011,
81
75
  C0202,
82
76
  C0301,
141
135
  W1501,
142
136
  superfluous-parens,
143
137
  bad-continuation,
 
138
  locally-enabled,
144
139
 
145
140
[REPORTS]
146
141
 
150
145
output-format=text
151
146
 
152
147
# Include message's id in output
153
 
include-ids=yes
 
148
# include-ids=yes
154
149
 
155
150
# Include symbolic ids of messages in output
156
 
symbols=no
 
151
# symbols=yes
157
152
 
158
153
# Put messages in a separate file for each module / package specified on the
159
154
# command line instead of printing them on stdout. Reports (if any) will be
174
169
# evaluation report (RP0004).
175
170
comment=no
176
171
 
 
172
# Template used to display messages. This is a python new-style format string
 
173
# used to format the message information. See doc for all details
 
174
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
 
175
 
 
176
 
177
177
 
178
178
[MISCELLANEOUS]
179
179