Skip to content

Commit 8c3e334

Browse files
committed
Update Pylint configuration to suppress Cython import errors and ignore benchmark directories
1 parent 9c91210 commit 8c3e334

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.pylintrc

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22
max-line-length = 120
33

44
[pylint]
5-
good-names=i,j,m,n,ld,df
5+
good-names=i,j,m,n,ld,df,ref,hyp
66

77
[MESSAGES CONTROL]
8-
disable=too-many-locals
8+
disable=
9+
too-many-locals,
10+
import-error,
11+
duplicate-code
12+
13+
[MASTER]
14+
# Ignore benchmark and development files that use optional dependencies
15+
ignore-paths=
16+
^(benchmarks|development|docs)[\\/].*$

0 commit comments

Comments
 (0)