Update ruff configuration for ruff 0.2.0 (#10332)

This commit is contained in:
Alex Gaynor 2024-02-02 08:51:50 -05:00 committed by GitHub
parent b557e4d544
commit 4a7dc8cc92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -143,11 +143,12 @@ exclude_lines = [
]
[tool.ruff]
ignore = ['N818']
select = ['E', 'F', 'I', 'N', 'W', 'UP', 'RUF']
line-length = 79
[tool.ruff.isort]
lint.ignore = ['N818']
lint.select = ['E', 'F', 'I', 'N', 'W', 'UP', 'RUF']
[tool.ruff.lint.isort]
known-first-party = ["cryptography", "cryptography_vectors", "tests"]
[tool.check-sdist]