-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
65 lines (62 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "otto-monorepo"
version = "0.0.0"
description = "Monorepo containing otto projects"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.11.7",
]
[tool.uv.workspace]
members = ["otto"]
[dependency-groups]
dev = ["basedpyright>=1.29.0", "lefthook>=1.11.11", "ruff>=0.11.6"]
[tool.ruff.lint]
select = [
# pycodestyle
"E", # errors
"W", # warnings
# pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# pep8 naming
"N",
# pydocstyle
"D",
"D211",
"D213",
# ruff-specific
"RUF",
# tryceratops
"TRY",
# flake8-executable
"EXE",
# flake8-datetimez
"DTZ",
# flake8-copyright notice
"CPY",
# flake8-comprehensions
"C4",
# flake8-commas
"COM",
# flake8-blind-except
"BLE",
# flake8-bandit
"S",
]
ignore = [
"ANN", # annotations
"D10", # missing docstring in public modules, etc
"D203", # mutually exclusive with D211
"D212", # mutually exclusive with D213
"COM812", # ignore missing trailing comma
"CPY001", # missing copyright notice
"S101", # use of assert
]