8000 pyproject.toml: Don't check for line-length with `ruff` since we're r… · tetsuo-cpp/sigstore-python@cc967a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit cc967a7

Browse files
authored
pyproject.toml: Don't check for line-length with ruff since we're reformatting with black (sigstore#477)
* Makefile: Run `black` to break lines before linting with `ruff` Signed-off-by: Alex Cameron <asc@tetsuo.sh> * Makefile, pyproject.toml: Stop ruff checking for line length instead Signed-off-by: Alex Cameron <asc@tetsuo.sh> --------- Signed-off-by: Alex Cameron <asc@tetsuo.sh>
1 parent 7d93cf0 commit cc967a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ plugins = ["pydantic.mypy"]
122122
exclude_dirs = ["./test"]
123123

124124
[tool.ruff]
125-
line-length = 100
125+
# Never enforce `E501` (line length violations).
126+
ignore = ["E501"]
126127
# TODO: Enable "UP" here once Pydantic allows us to:
127128
# See: https://github.com/pydantic/pydantic/issues/4146
128129
select = ["E", "F", "W"]

0 commit comments

Comments
 (0)
0