Lines Matching +full:comma +full:- +full:separated

8 #init-hook=
20 # List of plugins (as comma separated values of python modules names) to load,
22 load-plugins=pylint.extensions.docparams
23 accept-no-param-doc=no
28 # can either give multiple identifiers separated by comma (,) or put this
30 # file where it should appear only once).You can also use "--disable=all" to
32 # you want to run only the similarities checker, you can use "--disable=all
33 # --enable=similarities". If you want to run only the classes checker, but have
34 # no Warning level messages displayed, use"--disable=all --enable=classes
35 # --disable=W"
36 disable=design,similarities,no-self-use,attribute-defined-outside-init,locally-disabled,star-args,pointless-except,bad-option-value,global-statement,fixme,suppressed-message,useless-suppression,locally-enabled,no-member,no-name-in-module,import-error,unsubscriptable-object,unbalanced-tuple-unpacking,undefined-variable,not-context-manager,invalid-sequence-index,W,R,C,I
39 # either give multiple identifier separated by comma (,) or put this option
40 # multiple time. See also the "--disable" option for examples.
41 # W0311 bad-indentation
42 # W0312 mixed-indentation
43 # C0330 bad-continuation
44 # C0301 line-too-long
45 # C0326 bad-whitespace
46 # W0611 unused-import
47 # W0622 redefined-builtin
50 enable=indexing-exception,old-raise-syntax,W0311,W0312,C0330,C0301,C0326,W0611,W0622
53 cache-size=500
61 output-format=text
66 files-output=no
76 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
82 # Template used to display messages. This is a python new-style format string
84 #msg-template=
91 ignore-mixin-members=yes
95 ignored-classes=SQLObject
98 # to generated-members.
104 generated-members=REQUEST,acl_users,aq_parent
108 contextmanager-decorators=contextlib.contextmanager,contextlib2.contextmanager
114 init-import=no
118 dummy-variables-rgx=^\*{0,2}(_$|unused_|dummy_)
122 additional-builtins=
127 # Required attributes for module, separated by a comma
128 required-attributes=
130 # List of builtins function names that should not be used, separated by a comma
131 bad-functions=apply,input,reduce
135 # All non-Google reports are disabled by default.
136 disable-report=R0001,R0002,R0003,R0004,R0101,R0102,R0201,R0202,R0220,R0401,R0402,R0701,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,R0923
139 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
142 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
145 class-rgx=^_?[A-Z][a-zA-Z0-9]*$
148 function-rgx=^(?:(?P<camel_case>_?[A-Z][a-zA-Z0-9]*)|(?P<snake_case>_?[a-z][a-z0-9_]*))$
151 method-rgx=^(?:(?P<exempt>__[a-z0-9_]+__|next)|(?P<camel_case>_{0,2}[A-Z][a-zA-Z0-9]*)|(?P<snake_case>_{0,2}[a-z][a-z0-9_]*))$
154 attr-rgx=^_{0,2}[a-z][a-z0-9_]*$
157 argument-rgx=^[a-z][a-z0-9_]*$
160 variable-rgx=^[a-z][a-z0-9_]*$
164 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
168 inlinevar-rgx=^[a-z][a-z0-9_]*$
170 # Good variable names which should always be accepted, separated by a comma
171 good-names=main,_
173 # Bad variable names which should always be refused, separated by a comma
174 bad-names=
178 no-docstring-rgx=(__.*__|main)
182 docstring-min-length=10
188 max-line-length=80
191 ignore-long-lines=(?x)
194 |^[a-zA-Z_][a-zA-Z0-9_]*\s*=\s*("[^"]\S+"|'[^']\S+')
196 |^[^#]*\#\ type:\ [a-zA-Z_][a-zA-Z0-9_.,[\] ]*$
205 single-line-if-stmt=y
208 no-space-check=
211 max-module-lines=99999
215 indent-string=' '
221 min-similarity-lines=4
224 ignore-comments=yes
227 ignore-docstrings=yes
230 ignore-imports=no
235 # List of note tags to take in consideration, separated by a comma.
241 # Deprecated modules which should not be used, separated by a comma
242 deprecated-modules=regsub,TERMIOS,Bastion,rexec,sets
246 import-graph=
250 ext-import-graph=
254 int-import-graph=
259 # List of interface methods to ignore, separated by a comma. This is used for
261 ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
264 defining-attr-methods=__init__,__new__,setUp
267 valid-classmethod-first-arg=cls,class_
270 valid-metaclass-classmethod-first-arg=mcs
276 max-args=5
280 ignored-argument-names=_.*
283 max-locals=15
286 max-returns=6
289 max-branches=12
292 max-statements=50
295 max-parents=7
298 max-attributes=7
301 min-public-methods=2
304 max-public-methods=20
311 overgeneral-exceptions=Exception,StandardError,BaseException
317 short-func-length=1
322 deprecated-members=string.atof,string.atoi,string.atol,string.capitalize,string.expandtabs,string.find,string.rfind,string.index,string.rindex,string.count,string.lower,string.split,string.rsplit,string.splitfields,string.join,string.joinfields,string.lstrip,string.rstrip,string.strip,string.swapcase,string.translate,string.upper,string.ljust,string.rjust,string.center,string.zfill,string.replace,sys.exitfunc
327 default-docstring-type=google
330 ignore-exceptions=AssertionError,NotImplementedError,StopIteration,TypeError
338 indent-after-paren=4