Browse Source

test suite: minor fixes

The MMGen Project 2 weeks ago
parent
commit
915473cc2d
1 changed files with 9 additions and 0 deletions
  1. 9 0
      pyproject.toml

+ 9 - 0
pyproject.toml

@@ -6,6 +6,14 @@ requires = [
 ]
 build-backend = "setuptools.build_meta"
 
+[tool.ruff]
+line-length = 106
+indent-width = 4
+
+[tool.ruff.format]
+quote-style = "single"
+indent-style = "tab"
+
 [tool.ruff.lint]
 ignore = [
 	"E401", # multiple imports per line
@@ -125,4 +133,5 @@ ignored-classes = [ # ignored for no-member, otherwise checked
 	"Opts",
 	"Help",
 	"FFI_override",
+	"RPC",
 ]