We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55de244 commit e909d44Copy full SHA for e909d44
2 files changed
.github/workflows/pre-commit.yml .github/workflows/lint.yml.github/workflows/pre-commit.yml renamed to .github/workflows/lint.yml
pyproject.toml
@@ -98,8 +98,12 @@ exclude = [
98
fix = true
99
100
lint.select = [
101
- "E", # pycodestyle errors
102
- "F", # pyflakes errors
+ "E", # pycodestyle errors
+ "F", # pyflakes errors
103
+ "I", # isort
104
+ "ISC", # flake8-implicit-str-concat
105
+ "RUF022", # unsorted-dunder-all
106
+ "RUF100", # unused noqa (yesqa)
107
]
108
lint.ignore = [
109
"E501", # line too long
0 commit comments