Skip to content

Commit e805aba

Browse files
committed
pylint E0015 Unrecognized option found
1 parent 36ac4bc commit e805aba

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.pylintrc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ max-module-lines=1000
229229
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
230230
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
231231
# `empty-line` allows space-only lines.
232-
no-space-check=trailing-comma,dict-separator
232+
# no-space-check=trailing-comma,dict-separator
233233

234234
# Allow the body of a class to be on the same line as the declaration if body
235235
# contains single statement.
@@ -258,13 +258,13 @@ min-similarity-lines=12
258258
[BASIC]
259259

260260
# Naming hint for argument names
261-
argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
261+
# argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
262262

263263
# Regular expression matching correct argument names
264264
argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
265265

266266
# Naming hint for attribute names
267-
attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
267+
# attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
268268

269269
# Regular expression matching correct attribute names
270270
attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
@@ -273,21 +273,21 @@ attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
273273
bad-names=foo,bar,baz,toto,tutu,tata
274274

275275
# Naming hint for class attribute names
276-
class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
276+
# class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
277277

278278
# Regular expression matching correct class attribute names
279279
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
280280

281281
# Naming hint for class names
282282
# class-name-hint=[A-Z_][a-zA-Z0-9]+$
283-
class-name-hint=[A-Z_][a-zA-Z0-9_]+$
283+
# class-name-hint=[A-Z_][a-zA-Z0-9_]+$
284284

285285
# Regular expression matching correct class names
286286
# class-rgx=[A-Z_][a-zA-Z0-9]+$
287287
class-rgx=[A-Z_][a-zA-Z0-9_]+$
288288

289289
# Naming hint for constant names
290-
const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
290+
# const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
291291

292292
# Regular expression matching correct constant names
293293
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
@@ -297,7 +297,7 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
297297
docstring-min-length=-1
298298

299299
# Naming hint for function names
300-
function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
300+
# function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
301301

302302
# Regular expression matching correct function names
303303
function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
@@ -310,19 +310,19 @@ good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_
310310
include-naming-hint=no
311311

312312
# Naming hint for inline iteration names
313-
inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
313+
# inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
314314

315315
# Regular expression matching correct inline iteration names
316316
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
317317

318318
# Naming hint for method names
319-
method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
319+
# method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
320320

321321
# Regular expression matching correct method names
322322
method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
323323

324324
# Naming hint for module names
325-
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
325+
# module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
326326

327327
# Regular expression matching correct module names
328328
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
@@ -340,7 +340,7 @@ no-docstring-rgx=^_
340340
property-classes=abc.abstractproperty
341341

342342
# Naming hint for variable names
343-
variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
343+
# variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
344344

345345
# Regular expression matching correct variable names
346346
variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$

0 commit comments

Comments
 (0)