Skip to content

Commit

Permalink
Pylint shouldn't check line length
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Jan 31, 2024
1 parent ab75f74 commit 68be668
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ where = ['src']

[tool.black]
line-length = 88
target_version = ['py39']
target-version = ['py39']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
Expand Down Expand Up @@ -147,6 +147,7 @@ disable = [
'cyclic-import', # We have tail imports all over
'fixme', # Our workflow is to tag for future fixes
'invalid-name', # Flake8 covers our naming convention requirements
'line-too-long', # Let Black/Ruff handle this
'missing-class-docstring', # Backlog
'missing-function-docstring', # Backlog
'no-member', # Pylint doesn't understand mixins referring to main class members
Expand Down

0 comments on commit 68be668

Please sign in to comment.