We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8629e13 commit ee393e2Copy full SHA for ee393e2
.ruff.toml
pyproject.toml
@@ -104,3 +104,25 @@ exclude = [
104
[[tool.mypy.overrides]]
105
module = "pyperf"
106
ignore_missing_imports = true
107
+
108
+[tool.ruff]
109
+target-version = "py310"
110
111
+exclude = [
112
+ "pyperformance/data-files/",
113
+]
114
115
+[tool.ruff.lint]
116
+select = [
117
+ "E",
118
+ "F",
119
120
121
+ignore = [
122
+ "E402", # module level import not at top of file
123
+ "E501", # line too long
124
+ "E701", # multiple statements on one line (colon)
125
+ "E722", # do not use bare 'except'
126
+ "E741", # ambiguous variable name
127
+ "F405", # name may be undefined, or defined from star imports
128
0 commit comments