Skip to content

Commit

Permalink
Merge pull request #41 from lsst-dm/u/timj/fix-ruff-config
Browse files Browse the repository at this point in the history
Fix ruff config
  • Loading branch information
timj committed Jul 15, 2024
2 parents 0c255e9 + cdc9652 commit 08523e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.4.0
rev: 24.4.2
hooks:
- id: black
# It is recommended to specify the latest version of Python
Expand All @@ -21,6 +21,6 @@ repos:
name: isort (python)
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.4.1
rev: v0.5.2
hooks:
- id: ruff
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,14 @@ line_length = 110
write_to = "python/lsst/daf/butler_migrate/version.py"

[tool.ruff]
target-version = "py311"
line-length = 110
exclude = [
"__init__.py",
"migrations/*/*.py",
]

[tool.ruff.lint]
ignore = [
"N802",
"N803",
Expand All @@ -85,7 +89,6 @@ ignore = [
"D205",
"D400",
]
line-length = 110
select = [
"E", # pycodestyle
"F", # pycodestyle
Expand All @@ -95,15 +98,14 @@ select = [
"UP",
"C4",
]
target-version = "py311"
extend-select = [
"RUF100", # Warn about unused noqa
]

[tool.ruff.pycodestyle]
[tool.ruff.lint.pycodestyle]
max-doc-length = 79

[tool.ruff.pydocstyle]
[tool.ruff.lint.pydocstyle]
convention = "numpy"

[tool.pytest.ini_options]
Expand Down

0 comments on commit 08523e8

Please sign in to comment.