-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
98 lines (92 loc) · 3.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.black]
line-length = 115
target-version = ["py312"]
[tool.isort]
line_length = 115
profile = "black"
py_version = 312
use_parentheses = true
## Ignore the source of the import and just sort alphabetically, with "from" before "import"
combine_as_imports = true
combine_straight_imports = true
from_first = true
lines_between_sections = 0
no_sections = true
[tool.pytest.ini_options]
# Disable warnings from third-party libraries
filterwarnings = "ignore::DeprecationWarning"
[tool.ruff]
lint.extend-ignore = [
"DTZ003",
"DTZ007",
"E401", # multiple imports on one line
"N817", # D for decimal
"PLR0912", # Don't compplain about too many branches
"PLR0913", # don't complain about too many arguments
"PLR2004", # Don't force every magic value to be a constant
"PLW0120", # else without a break is fine (I use return with for-else)
"RET505", # Allow for return values to be set outside of if/else blocks
"RET506", # Allow for return values to be set after raising an exception
"RET507", # Allow for return values to be set after continue
"RET508", # Allow for return values to be set after break
"S101", # assert
"S105", # possible hardcoded password
"S308", # Trust us with mark_safe
"S311", # Trust us with random
"S324", # Trust us with hashlib
"S603", # Trust us with subprocess
"S607", # Trust us with subprocess with partial commands
"SIM108", # Don't force ternary operators
"TRY003", # long messages in exceptions are ok
]
# https://beta.ruff.rs/docs/rules/#ruff-specific-rules-ruf
line-length = 120 # Tell the linter the max length is 120, and the other tools aim for 115
lint.select = [
# Note, don't use isort through ruff, it's not as configurable as the standalone tool
"A", # builtins
#"ARG", # unused arguments
"B", # bugbear
"DJ", # django
"DTZ", # datetimez
"E", # pycodestyle
"EXE", # executable settings
"F", # pyflakes
"INP", # implicit namespace packages
"ISC", # string concatenation
"N", # pep8 naming
"NPY", # numpy
"PD", # pandas checking
"PGH", # explicit noqa
"PIE", # flake8 pie
"PLC", # pylint convention
"PLE", # pylint errors
"PLR", # pylint refactor
"PLW", # pylint warnings
#"PT", # pytest style
"PTH", # Use path library
"RET", # return statements
"RSE", # raise statements
#"RUF", # ruff Disabled because it is too aggressive about removing noqa settings when editing files
"S", # flake8-bandit
"SIM", # flake8 simplify
"SLF", # self
"T10", # debug statements
"T20", # print statements
"TRY", # try/except
"UP", # pyupgrade
"W", # pycodestyle warnings
"YTT", # flake8 2020
]
target-version = "py312"
# Certain errors we don't want to fix because they are too aggressive,
# especially in the editor (removing variables we haven't used yet
extend-exclude = [
# Don't look at the patch data because it contains incomplete python files
"tests/rebuild_patch_data",
]
lint.unfixable = ["F401", "F841"]
[tool.ruff.lint.per-file-ignores]
# Allow print statements in tests
"test_*.py" = ["T201"]
[tool.semantic_release]
version_variable = "aicodebot:version"