Initial commit
This commit is contained in:
40
pyproject.toml
Normal file
40
pyproject.toml
Normal file
@@ -0,0 +1,40 @@
|
||||
|
||||
[project]
|
||||
name = ""
|
||||
version = ""
|
||||
description = ""
|
||||
authors = [
|
||||
{name = "Daniel Cormier", email = "git@drc97.com"},
|
||||
]
|
||||
dependencies = []
|
||||
requires-python = ">=3.11"
|
||||
license = {text = "MIT"}
|
||||
[tool.ruff]
|
||||
extend-select = [
|
||||
"ANN",
|
||||
"B",
|
||||
"BLE",
|
||||
"C4",
|
||||
"ERA",
|
||||
"I",
|
||||
"ICN",
|
||||
"INP",
|
||||
"ISC",
|
||||
"N",
|
||||
"NPY",
|
||||
"PGH",
|
||||
"PIE",
|
||||
# "PTH",
|
||||
"Q",
|
||||
"RET",
|
||||
"RSE",
|
||||
"RUF",
|
||||
"S",
|
||||
"SIM",
|
||||
"T20",
|
||||
"TCH",
|
||||
"TID",
|
||||
"YTT",
|
||||
]
|
||||
ignore = ["E402", "B905", "N818", "S101"]
|
||||
show-fixes = true
|
||||
Reference in New Issue
Block a user