forked from glhuilli/limbic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
15 lines (13 loc) · 821 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[MESSAGES CONTROL]
# R0903: Too few public methods (1/2) (too-few-public-methods)
# C0111: Missing module docstring (missing-docstring)
# W1203: Use % formatting in logging functions and pass the % parameters as arguments (logging-fstring-interpolation)
# C0103: Constant name doesn't conform to UPPER_CASE naming style (invalid-name)
# W0511: Used when a warning note as FIXME or XXX is detected
# C0301: Line too long (102/100) (line-too-long)
# W0108: Lambda may not be necessary (unnecessary-lambda)
# R0914: Too many local variables (16/15) (too-many-locals) # FIXME
# E1101: Module 'torch' has no 'long' member (no-member)
# E1102: torch.tensor is not callable (not-callable)
# R0913: Too many arguments (7/5) (too-many-arguments) # FIXME
disable=R0903,C0111,W1203,C0103,W0511,C0301,W0108,R0914,E1101,E1102,R0913