-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (28 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "util-fns"
authors = [
{name = "Dave Hall", email = "skwashd@gmail.com"},
]
description = "Utility Lambda functions designed to be called from AWS Step Functions."
dependencies = [
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"aws-lambda-powertools==3.4.0",
"pytest==8.3.4",
"coverage==7.6.10",
"pytest-mock==3.14.0",
"ruff==0.8.6",
]
[tool.setuptools-git-versioning]
enabled = true
[tool.ruff.lint]
# Rules listed at https://github.com/charliermarsh/ruff#supported-rules
select = ["B", "D", "E", "F", "G", "I", "N", "S", "W", "ANN" ,"BLE", "C4", "C90", "DTZ", "ERA", "PLW", "PT", "RET", "RUF", "SIM", "TRY", "UP"]
ignore = ["D203", "D211", "D212", "E501", "F403", "F405", "ANN101"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["B", "D", "E", "F", "G", "I", "N", "S", "W", "ANN" ,"BLE", "C4", "C90", "DTZ", "ERA", "PLW", "PT", "RET", "RUF", "SIM", "TRY", "UP"]
unfixable = []
[tool.ruff.lint.per-file-ignores]
"test_*" = ["S101", "S108"]