You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,12 @@ select = [
87
87
"T100", # Checks for the presence of debugger calls and imports
88
88
"N", # pep8 naming conventions
89
89
"PGH004", # ensures no blanket noqa's are used
90
+
"W", # Pycodestyle warnings
91
+
"YTT", # checks for misuse of sys.version or sys.version_info
92
+
# "FBT", # checks for boolean traps (which result in poor function API)
93
+
# "A", # check for python builtins being used as variables or parameters
94
+
# "T20", # disallows printing in code - parcels source code should not have dev debugging statements, or should use logging statements instead of prints
0 commit comments