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=abstract-method,
60 apply-builtin,
61 arguments-differ,
62 attribute-defined-outside-init,
64 bad-option-value,
65 basestring-builtin,
66 buffer-builtin,
67 c-extension-no-member,
68 consider-using-enumerate,
69 cmp-builtin,
70 cmp-method,
71 coerce-builtin,
72 coerce-method,
73 delslice-method,
74 div-method,
75 duplicate-code,
76 eq-without-hash,
77 execfile-builtin,
78 file-builtin,
79 filter-builtin-not-iterating,
81 getslice-method,
82 global-statement,
83 hex-method,
84 idiv-method,
85 implicit-str-concat-in-sequence,
86 import-error,
87 import-self,
88 import-star-module-level,
89 inconsistent-return-statements,
90 input-builtin,
91 intern-builtin,
92 invalid-str-codec,
93 locally-disabled,
94 long-builtin,
95 long-suffix,
96 map-builtin-not-iterating,
97 misplaced-comparison-constant,
98 missing-function-docstring,
99 metaclass-assignment,
100 next-method-called,
101 next-method-defined,
102 no-absolute-import,
103 no-else-break,
104 no-else-continue,
105 no-else-raise,
106 no-else-return,
107 no-init, # added
108 no-member,
109 no-name-in-module,
110 no-self-use,
111 nonzero-method,
112 oct-method,
113 old-division,
114 old-ne-operator,
115 old-octal-literal,
116 old-raise-syntax,
117 parameter-unpacking,
118 print-statement,
119 raising-string,
120 range-builtin-not-iterating,
121 raw_input-builtin,
122 rdiv-method,
123 reduce-builtin,
124 relative-import,
125 reload-builtin,
126 round-builtin,
127 setslice-method,
128 signature-differs,
129 standarderror-builtin,
130 suppressed-message,
131 sys-max-int,
132 too-few-public-methods,
133 too-many-ancestors,
134 too-many-arguments,
135 too-many-boolean-expressions,
136 too-many-branches,
137 too-many-instance-attributes,
138 too-many-locals,
139 too-many-nested-blocks,
140 too-many-public-methods,
141 too-many-return-statements,
142 too-many-statements,
143 trailing-newlines,
144 unichr-builtin,
145 unicode-builtin,
146 unnecessary-pass,
147 unpacking-in-except,
148 useless-else-on-loop,
149 useless-object-inheritance,
150 useless-suppression,
151 using-cmp-argument,
152 wrong-import-order,
153 xrange-builtin,
154 zip-builtin-not-iterating,
162 output-format=text
172 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
174 # Template used to display messages. This is a python new-style format string
176 #msg-template=
181 # Good variable names which should always be accepted, separated by a comma
182 good-names=main,_
184 # Bad variable names which should always be refused, separated by a comma
185 bad-names=
187 # Colon-delimited sets of names that determine each other's naming style when
189 name-group=
191 # Include a hint for the correct naming format with invalid-name
192 include-naming-hint=no
196 property-classes=abc.abstractproperty,cached_property.cached_property,cached_property.threaded_cach…
199 function-rgx=^(?:(?P<exempt>setUp|tearDown|setUpModule|tearDownModule)|(?P<camel_case>_?[A-Z][a-zA-…
202 variable-rgx=^[a-z][a-z0-9_]*$
205 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
208 attr-rgx=^_{0,2}[a-z][a-z0-9_]*$
211 argument-rgx=^[a-z][a-z0-9_]*$
214 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$
217 inlinevar-rgx=^[a-z][a-z0-9_]*$
220 class-rgx=^_?[A-Z][a-zA-Z0-9]*$
223 module-rgx=^(_?[a-z][a-z0-9_]*|__init__)$
226 …-rgx=(?x)^(?:(?P<exempt>_[a-z0-9_]+__|runTest|setUp|tearDown|setUpTestCase|tearDownTestCase|setupS…
230 no-docstring-rgx=(__.*__|main|test.*|.*test|.*Test)$
234 docstring-min-length=10
242 contextmanager-decorators=contextlib.contextmanager,contextlib2.contextmanager
246 ignore-mixin-members=yes
252 ignored-modules=
257 ignored-classes=optparse.Values,thread._local,_thread._local
262 generated-members=
268 max-line-length=100
274 ignore-long-lines=(?x)(
280 single-line-if-stmt=yes
283 max-module-lines=99999
286 # spaces. Google's externaly-published style guide says 4, consistent with
287 # PEP 8. Here, we use 2 spaces, for conformity with many open-sourced Google
289 indent-string=' '
292 indent-after-paren=4
295 expected-line-ending-format=
300 # List of note tags to take in consideration, separated by a comma.
306 # This flag controls whether inconsistent-quotes generates a warning when the
308 check-quote-consistency=yes
314 init-import=no
318 dummy-variables-rgx=^\*{0,2}(_$|unused_|dummy_)
322 additional-builtins=
330 redefining-builtins-modules=six,six.moves,past.builtins,future.builtins,functools
337 logging-modules=logging,absl.logging,tensorflow.io.logging
343 min-similarity-lines=4
346 ignore-comments=yes
349 ignore-docstrings=yes
352 ignore-imports=no
358 # install python-enchant package.
359 spelling-dict=
361 # List of comma separated words that should not be checked.
362 spelling-ignore-words=
365 spelling-private-dict-file=
368 # --spelling-private-dict-file option instead of raising a message.
369 spelling-store-unknown-words=no
374 # Deprecated modules which should not be used, separated by a comma
375 deprecated-modules=regsub,
383 import-graph=
387 ext-import-graph=
391 int-import-graph=
395 known-standard-library=
398 known-third-party=enchant, absl
403 analyse-fallback-blocks=no
409 defining-attr-methods=__init__,
415 exclude-protected=_asdict,
422 valid-classmethod-first-arg=cls,
426 valid-metaclass-classmethod-first-arg=mcs
433 overgeneral-exceptions=builtins.StandardError,