@@ -12,7 +12,7 @@ profile=no
12
12
13
13
# Add files or directories to the blacklist. They should be base names, not
14
14
# paths.
15
- ignore =CVS
15
+ ignore =CVS,CardNames.py,scard.py
16
16
17
17
# Pickle collected data for later comparisons.
18
18
persistent =yes
@@ -21,14 +21,6 @@ persistent=yes
21
21
# usually to register additional checkers.
22
22
load-plugins =
23
23
24
- # Deprecated. It was used to include message's id in output. Use --msg-template
25
- # instead.
26
- include-ids =no
27
-
28
- # Deprecated. It was used to include symbolic ids of messages in output. Use
29
- # --msg-template instead.
30
- symbols =no
31
-
32
24
# Use multiple processes to speed up Pylint.
33
25
jobs =1
34
26
@@ -218,16 +210,16 @@ name-group=
218
210
include-naming-hint =no
219
211
220
212
# Regular expression matching correct function names
221
- function-rgx =[a-z_][a-z0 -9_]{2,30}$
213
+ function-rgx =[a-z_][a-zA-Z0 -9_]{2,30}$
222
214
223
215
# Naming hint for function names
224
- function-name-hint =[a-z_][a-z0 -9_]{2,30}$
216
+ function-name-hint =[a-z_][a-zA-Z0 -9_]{2,30}$
225
217
226
218
# Regular expression matching correct variable names
227
- variable-rgx =[a-z_][a-z0- 9_]{2 ,30}$
219
+ variable-rgx =[a-z_][a-zA-Z0- 9_]{1 ,30}$
228
220
229
221
# Naming hint for variable names
230
- variable-name-hint =[a-z_][a-z0- 9_]{2 ,30}$
222
+ variable-name-hint =[a-z_][a-zA-Z0- 9_]{1 ,30}$
231
223
232
224
# Regular expression matching correct constant names
233
225
const-rgx =(([A-Z_][A-Z0-9_]*)|(__.*__))$
@@ -236,22 +228,22 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
236
228
const-name-hint =(([A-Z_][A-Z0-9_]*)|(__.*__))$
237
229
238
230
# Regular expression matching correct attribute names
239
- attr-rgx =[a- z_][a- z0-9_]{2 ,30}$
231
+ attr-rgx =[A-Za- z_][A-Za- z0-9_]{1 ,30}$
240
232
241
233
# Naming hint for attribute names
242
- attr-name-hint =[a- z_][a- z0-9_]{2 ,30}$
234
+ attr-name-hint =[A-Za- z_][A-Za- z0-9_]{1 ,30}$
243
235
244
236
# Regular expression matching correct argument names
245
- argument-rgx =[a-z_][a -z0-9_]{2,30}$
237
+ argument-rgx =[a-z_][A-Za -z0-9_]{2,30}$
246
238
247
239
# Naming hint for argument names
248
- argument-name-hint =[a-z_][a -z0-9_]{2,30}$
240
+ argument-name-hint =[a-z_][A-Za -z0-9_]{2,30}$
249
241
250
242
# Regular expression matching correct class attribute names
251
- class-attribute-rgx =([A-Za-z_][A-Za-z0-9_]{2 ,30}|(__.*__))$
243
+ class-attribute-rgx =([A-Za-z_][A-Za-z0-9_]{1 ,30}|(__.*__))$
252
244
253
245
# Naming hint for class attribute names
254
- class-attribute-name-hint =([A-Za-z_][A-Za-z0-9_]{2 ,30}|(__.*__))$
246
+ class-attribute-name-hint =([A-Za-z_][A-Za-z0-9_]{1 ,30}|(__.*__))$
255
247
256
248
# Regular expression matching correct inline iteration names
257
249
inlinevar-rgx =[A-Za-z_][A-Za-z0-9_]*$
@@ -266,16 +258,16 @@ class-rgx=[A-Z_][a-zA-Z0-9]+$
266
258
class-name-hint =[A-Z_][a-zA-Z0-9]+$
267
259
268
260
# Regular expression matching correct module names
269
- module-rgx =(([a- z_][a- z0-9_]*)|([A-Z][a-zA-Z0-9]+) )$
261
+ module-rgx =([A-Za- z_][A-Za- z0-9_]*)$
270
262
271
263
# Naming hint for module names
272
- module-name-hint =(([a- z_][a- z0-9_]*)|([A-Z][a-zA-Z0-9]+) )$
264
+ module-name-hint =([A-Za- z_][A-Za- z0-9_]*)$
273
265
274
266
# Regular expression matching correct method names
275
- method-rgx =[a-z_][a -z0-9_]{2,30}$
267
+ method-rgx =[a-z_][A-Za -z0-9_]{2,30}$
276
268
277
269
# Naming hint for method names
278
- method-name-hint =[a-z_][a -z0-9_]{2,30}$
270
+ method-name-hint =[a-z_][A-Za -z0-9_]{2,30}$
279
271
280
272
# Regular expression which should only match function or class names that do
281
273
# not require a docstring.
0 commit comments