evorepo/ruff.toml

13 lines
332 B
TOML
Raw Normal View History

2023-11-02 04:27:56 -07:00
select = [
"C4", # flake8-comprehensions
2023-11-02 04:27:56 -07:00
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
2023-11-02 04:52:30 -07:00
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
2023-11-02 04:27:56 -07:00
]
2023-05-19 04:46:57 -07:00
# Never enforce `E501` (line length violations).
ignore = ["E501", "E731"]