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

1 # This Pylint rcfile contains a best-effort configuration to uphold the
2 # best-practices and style described in the Google Python style guide:
5 # Its canonical open-source location is:
16 ignore-patterns=
21 # List of plugins (as comma separated values of python modules names) to load,
23 load-plugins=
30 unsafe-load-any-extension=no
32 # A comma-separated list of package or module names from where C extensions may
35 extension-pkg-whitelist=
45 # either give multiple identifier separated by comma (,) or put this option
47 # it should appear only once). See also the "--disable" option for examples.
51 # can either give multiple identifiers separated by comma (,) or put this
53 # file where it should appear only once).You can also use "--disable=all" to
55 # you want to run only the similarities checker, you can use "--disable=all
56 # --enable=similarities". If you want to run only the classes checker, but have
57 # no Warning level messages displayed, use"--disable=all --enable=classes
58 # --disable=W"
59 disable=apply-builtin,
61 bad-option-value,
62 basestring-builtin,
63 buffer-builtin,
64 c-extension-no-member,
65 cmp-builtin,
66 cmp-method,
67 coerce-builtin,
68 coerce-method,
69 delslice-method,
70 div-method,
71 duplicate-code,
72 eq-without-hash,
73 execfile-builtin,
74 file-builtin,
75 filter-builtin-not-iterating,
77 getslice-method,
78 global-statement,
79 hex-method,
80 idiv-method,
81 implicit-str-concat-in-sequence,
82 import-error,
83 import-self,
84 import-star-module-level,
85 input-builtin,
86 intern-builtin,
87 invalid-str-codec,
88 locally-disabled,
89 long-builtin,
90 long-suffix,
91 map-builtin-not-iterating,
92 metaclass-assignment,
93 next-method-called,
94 next-method-defined,
95 no-absolute-import,
96 no-else-break,
97 no-else-continue,
98 no-else-raise,
99 no-else-return,
100 no-member,
101 no-self-use,
102 nonzero-method,
103 oct-method,
104 old-division,
105 old-ne-operator,
106 old-octal-literal,
107 old-raise-syntax,
108 parameter-unpacking,
109 print-statement,
110 raising-string,
111 range-builtin-not-iterating,
112 raw_input-builtin,
113 rdiv-method,
114 reduce-builtin,
115 relative-import,
116 reload-builtin,
117 round-builtin,
118 setslice-method,
119 signature-differs,
120 standarderror-builtin,
121 suppressed-message,
122 sys-max-int,
123 too-few-public-methods,
124 too-many-ancestors,
125 too-many-arguments,
126 too-many-boolean-expressions,
127 too-many-branches,
128 too-many-instance-attributes,
129 too-many-locals,
130 too-many-public-methods,
131 too-many-return-statements,
132 too-many-statements,
133 trailing-newlines,
134 unichr-builtin,
135 unicode-builtin,
136 unpacking-in-except,
137 useless-else-on-loop,
138 useless-suppression,
139 using-cmp-argument,
140 xrange-builtin,
141 zip-builtin-not-iterating,
149 output-format=text
155 files-output=no
165 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
167 # Template used to display messages. This is a python new-style format string
169 #msg-template=
174 # Good variable names which should always be accepted, separated by a comma
175 good-names=main,_
177 # Bad variable names which should always be refused, separated by a comma
178 bad-names=
180 # Colon-delimited sets of names that determine each other's naming style when
182 name-group=
184 # Include a hint for the correct naming format with invalid-name
185 include-naming-hint=no
189 property-classes=abc.abstractproperty,cached_property.cached_property,cached_property.threaded_cach…
192 function-rgx=^(?:(?P<exempt>setUp|tearDown|setUpModule|tearDownModule)|(?P<camel_case>_?[A-Z][a-zA-
195 variable-rgx=^[a-z][a-z0-9_]*$
198 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
201 attr-rgx=^_{0,2}[a-z][a-z0-9_]*$
204 argument-rgx=^[a-z][a-z0-9_]*$
207 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
210 inlinevar-rgx=^[a-z][a-z0-9_]*$
213 class-rgx=^_?[A-Z][a-zA-Z0-9]*$
216 module-rgx=^(_?[a-z][a-z0-9_]*|__init__)$
219-rgx=(?x)^(?:(?P<exempt>_[a-z0-9_]+__|runTest|setUp|tearDown|setUpTestCase|tearDownTestCase|setupS…
223 no-docstring-rgx=(__.*__|main|test.*|.*test|.*Test)$
227 docstring-min-length=10
235 contextmanager-decorators=contextlib.contextmanager,contextlib2.contextmanager
239 ignore-mixin-members=yes
245 ignored-modules=
250 ignored-classes=optparse.Values,thread._local,_thread._local
255 generated-members=
261 max-line-length=80
267 ignore-long-lines=(?x)(
273 single-line-if-stmt=yes
275 # List of optional constructs for which whitespace checking is disabled. `dict-
277 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
278 # `empty-line` allows space-only lines.
279 no-space-check=
282 max-module-lines=99999
285 # spaces. Google's externaly-published style guide says 4, consistent with
286 # PEP 8. Here, we use 2 spaces, for conformity with many open-sourced Google
288 indent-string=' '
291 indent-after-paren=4
294 expected-line-ending-format=
299 # List of note tags to take in consideration, separated by a comma.
306 init-import=no
310 dummy-variables-rgx=^\*{0,2}(_$|unused_|dummy_)
314 additional-builtins=
322 redefining-builtins-modules=six,six.moves,past.builtins,future.builtins,functools
329 logging-modules=logging,absl.logging,tensorflow.google.logging
335 min-similarity-lines=4
338 ignore-comments=yes
341 ignore-docstrings=yes
344 ignore-imports=no
350 # install python-enchant package.
351 spelling-dict=
353 # List of comma separated words that should not be checked.
354 spelling-ignore-words=
357 spelling-private-dict-file=
360 # --spelling-private-dict-file option instead of raising a message.
361 spelling-store-unknown-words=no
366 # Deprecated modules which should not be used, separated by a comma
367 deprecated-modules=regsub,
375 import-graph=
379 ext-import-graph=
383 int-import-graph=
387 known-standard-library=
390 known-third-party=enchant, absl
395 analyse-fallback-blocks=no
401 defining-attr-methods=__init__,
407 exclude-protected=_asdict,
414 valid-classmethod-first-arg=cls,
418 valid-metaclass-classmethod-first-arg=mcs
425 overgeneral-exceptions=StandardError,