File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ignore-paths=
9
9
10
10
# Files or directories matching the regex patterns are skipped. The regex
11
11
# matches against base names, not paths.
12
- ignore-patterns=
12
+ ignore-patterns=.*yolo_infer.py,.*paddle_yolo.py
13
13
14
14
# Python code to execute, usually for sys.path manipulation such as
15
15
# pygtk.require().
@@ -157,6 +157,10 @@ disable=abstract-method,
157
157
zip-builtin-not-iterating,
158
158
missing-module-docstring,
159
159
super-init-not-called,
160
+ wrong-import-position,
161
+ bare-except,
162
+ logging-fstring-interpolation,
163
+ logging-format-interpolation,
160
164
161
165
162
166
[REPORTS]
@@ -388,7 +392,7 @@ argument-naming-style=snake_case
388
392
#argument-rgx=
389
393
390
394
# Naming style matching correct attribute names.
391
- attr-naming-style=snake_case
395
+ attr-naming-style=any
392
396
393
397
# Regular expression matching correct attribute names. Overrides attr-naming-
394
398
# style.
@@ -468,7 +472,7 @@ inlinevar-naming-style=any
468
472
#inlinevar-rgx=
469
473
470
474
# Naming style matching correct method names.
471
- method-naming-style=snake_case
475
+ method-naming-style=any
472
476
473
477
# Regular expression matching correct method names. Overrides method-naming-
474
478
# style.
You can’t perform that action at this time.
0 commit comments