File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -96,25 +96,13 @@ select = [
9696
9797ignore = [
9898 " E501" , # Line too long, handled by formatter
99- " S101" , # Use of assert (common in tests)
100- " S104" , # Possible binding to all interfaces
101- " S105" , # Possible hardcoded password
102- " S106" , # Possible hardcoded password
103- " S107" , # Possible hardcoded password
104- " S108" , # Probable insecure usage of temp file/directory
105- " T201" , # print found (we use print statements for CLI output)
10699 " B008" , # Do not perform function calls in argument defaults
107- " N806" , # Variable name should be lowercase
108- " SIM118" , # Use dict.get() instead of conditional assignment
109100]
110101
111102# Allow fix for all enabled rules (when `--fix`) is provided.
112103fixable = [" ALL" ]
113104unfixable = []
114105
115- # Allow unused variables when underscore-prefixed.
116- dummy-variable-rgx = " ^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
117-
118106[tool .ruff .format ]
119107# Like Black, use double quotes for strings.
120108quote-style = " double"
You can’t perform that action at this time.
0 commit comments