forked from MODFLOW-ORG/modflow6-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
23 lines (22 loc) · 682 Bytes
/
Copy pathruff.toml
File metadata and controls
23 lines (22 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
line-length = 88
target-version = "py310"
[lint]
select = [
"C4", # flake8 comprehensions
"D409", # pydocstyle - section-underline-matches-section-length
"E", # pycodestyle error
"F", # Pyflakes
"I001", # isort - unsorted-imports
# "ISC", # implicitly concatenated strings
"RUF", # Ruff-specific rules
"UP", # Pyupgrade
]
ignore = [
"E501", # line too long TODO FIXME
"E722", # do not use bare `except`
"E741", # ambiguous variable name
"F841", # local variable assigned but never used
"RUF005", # collection literal concatenation
"UP015", # redundant open modes
"RUF059", # unpacked variable is never used
]