280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
#inlinevar-rgx=
# Naming style matching correct method names
method-naming-style=camelCase
# Regular expression matching correct method names. Overrides method-naming-
# style
#method-rgx=^test_
# Naming style matching correct module names
module-naming-style=snake_case
# Regular expression matching correct module names. Overrides module-naming-
# style
#module-rgx=
|
|
|
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
#inlinevar-rgx=
# Naming style matching correct method names
method-naming-style=camelCase
# Regular expression matching correct method names. Overrides method-naming-
# style
method-rgx=^test_|^_|^[a-zA-Z][a-zA-Z0-9]+$
# Naming style matching correct module names
module-naming-style=snake_case
# Regular expression matching correct module names. Overrides module-naming-
# style
#module-rgx=
|