forked from ci-group/revolve2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
144 lines (138 loc) · 3.59 KB
/
pyproject.toml
File metadata and controls
144 lines (138 loc) · 3.59 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".github",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".env",
".vscode",
".DS_Store",
".history",
"__pypackages__",
"__pycache__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
"env",
]
line-length = 79
indent-width = 4
target-version = "py311"
show-fixes = true
[tool.ruff.lint]
select = [
"F", # Pyflakes
"W", # E/W pycodestyle
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"D", # pydocstyle
"UP", # pyupgrade
"YTT", # flake8-2020
"ANN", # flake8-annotations
"ASYNC", # flake8-async
"S", # flake8-bandit
"BLE", # flake8-blind-except
"FBT", # flake8-boolean-trap
"B", # flake8-bugbear
"A", # flake8-builtins
"COM", # flake8-commas
"CPY", # flake8-copyright
"C4", # flake8-comprehensions
"DTZ", # flake8-datetimez
"T10", # flake8-debugger
"DJ", # flake8-django
"EM", # flake8-errmsg
"EXE", # flake8-executable
"FA", # flake8-future-annotations
"ISC", # flake8-implicit-str-concat
"ICN", # flake8-import-conventions
"LOG", # flake8-logging
"G", # flake8-logging-format
"INP", # flake8-no-pep420
"PIE", # flake8-pie
"T20", # flake8-print
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RSE", # flake8-raise
"RET", # flake8-return
"SLF", # flake8-self
"SLOT", # flake8-slots
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"TCH", # flake8-type-checking
"INT", # flake8-gettext
"ARG", # flake8-unused-arguments
"PTH", # flake8-use-pathlib
"TD", # flake8-todos
"FIX", # flake8-fixme
"ERA", # eradicate
"PD", # pandas-vet
"PGH", # pygrep-hooks
"PL", # Pylint
"TRY", # tryceratops
"FLY", # flynt
"NPY", # NumPy-specific rules
"AIR", # Airflow
"PERF", # Perflint
"FURB", # refurb
"RUF", # Ruff-specific rules
]
ignore = [
# "ANN101", # Missing type annotation for self in method
# "ANN102", # Missing type annotation for cls in classmethod
# "N801", # Should use CapWords convention
# "PLR0913", # Too many arguments for method
# "PLR0904", # Too many public methods
# "FIX002", # Found "TODO" in code
# "ERA001", # Found commented-out code
# "FBT003", # Found "bool" in function argument
# "TID252", # relative imports
# "D205", # blank line between summary and description
# "T201", # found print statement
# "S301", # pickle insecure
# "S403", # pickle insecure import
"CPY001", # Found copyright symbol
"INP001", # implicit module __init__ thing
"G004", # Logging statement uses string formatting
"TD003", # link under TODO
]
fixable = ["ALL"]
unfixable = []
preview = true
[tool.ruff.format]
preview = true
quote-style = "double"
indent-style = "space"
# skip-magic-trailing-comma = true
# line-ending = "auto"
# docstring-code-format = true
# docstring-code-line-length = "dynamic"
[tool.pydoclint]
style = 'sphinx'
exclude = '\.git|.?venv|\.tox|tests/data|unparser\.py'
# require-return-section-when-returning-nothing = false
# check-class-attributes = true
# arg-type-hints-in-docstring = true
# check-return-types = true
[tool.mypy]
strict = true