Skip to content

Commit a462a7d

Browse files
authored
Merge pull request #119 from smkent/ruff
Move `ruff` select config to correct section
2 parents 58fcbd7 + 37e016c commit a462a7d

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

{{cookiecutter.project_name}}/pyproject.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,6 @@ target-version = "py310"
9595
line-length = 79
9696
fix = true
9797

98-
select = [
99-
"E", "W", # pycodestyle
100-
"F", # pyflakes
101-
"I", # isort
102-
"B", # bugbear
103-
"SIM", # flake8-simplify
104-
"N", # pep8-naming
105-
"UP", # pyupgrade
106-
]
107-
10898
exclude = [
10999
".git",
110100
".venv",
@@ -116,4 +106,15 @@ quote-style = "double"
116106
indent-style = "space"
117107
line-ending = "auto"
118108

109+
[tool.ruff.lint]
110+
select = [
111+
"E", "W", # pycodestyle
112+
"F", # pyflakes
113+
"I", # isort
114+
"B", # bugbear
115+
"SIM", # flake8-simplify
116+
"N", # pep8-naming
117+
"UP", # pyupgrade
118+
]
119+
119120
# vim: ft=cfg

0 commit comments

Comments
 (0)