-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (44 loc) · 1.02 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
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "buoy-barn"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.ruff]
line-length = 105
lint.select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"DJ", # flake8-django
"E", # pycodestyle
# "EM", # flake8-errmsg
"EXE", # flake8-executable
"F", # flakes
# "FURB", # refurb
"I", # import sorting
"ICN", # flake8-import-conventions
# "G", # flake8-logging-format
# "LOG", # flake8-logging
"NPY", # numpy
"PD", # pandas-vet
"PERF", # perflint
"PL", # pylint
"PTH", # flake8-pathlib
# "RUF", # ruff specific rules
"SIM", # flake8-simplify
"T20", # flake8-print
"UP", # upgrade
"W", # pycodestyle
]
lint.ignore = [
"EXE003",
]
lint.extend-per-file-ignores."**/migrations/*.py" = [ "E501" ]
lint.isort.known-first-party = [
"deployments",
"forecasts",
]