Skip to content

Commit

Permalink
Disable whitespace and max builtin
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankpatibandla committed Mar 1, 2024
1 parent 06a495a commit a89428f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
# W0601: Global variable undefined at the module level
# W0612: Unused variable
# W1406: Redundant u-string prefix
# R1731: Use max builtin function

# Performance optimization
# W1203: Use % formatting in logging functions and pass the parameters as arguments
Expand All @@ -77,6 +78,7 @@
# C0411: Wrongly ordered import
# C0412: Ungrouped imports
# C0301: Line too long
# C0303: Trailing whitespace

# Might be difficult to refactor in some cases
# W0718: Broad exception caught
Expand Down Expand Up @@ -105,4 +107,4 @@ disable = C0114, C0115, C0116, R0903, C0415, R1705, R0913, W1203, R1729, E1120
W0108, R0912, R0911, W0511, E1136, R0902, W0611, C0412, C0103, C0301, R1732, R0915, W1514, R1718, W1510,
E0602, W1309, C0325, E1101, R1714, R0916, W0719, R1734, E1133, W1201, W0107, W3101, W0640, C0201, W1113,
W0246, W0622, W0221, E1111, R1720, R1723, E0102, W0201, E0203, E0401, W0602, W0212, W0707, R0904, W0101,
C0302, E0110, W0603, R1701, W0106, R1721, W0601, R0401, W0612, W1406
C0302, E0110, W0603, R1701, W0106, R1721, W0601, R0401, W0612, W1406, C0303, R1731

0 comments on commit a89428f

Please sign in to comment.