Skip to content

Commit 6fe6ef7

Browse files
committed
style: reduce the line width limit to 79
1 parent fa1dd17 commit 6fe6ef7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude =
55
build,
66
dist,
77
doc/source/conf.py
8-
max-line-length = 115
8+
max-line-length = 79
99
# Ignore some style 'errors' produced while formatting by 'black'
1010
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#labels-why-pycodestyle-warnings
1111
extend-ignore = E203

.isort.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[settings]
2-
line_length = 115
2+
line_length = 79
33
multi_line_output = 3
44
include_trailing_comma = True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ignore-words = ".codespell/ignore_words.txt"
6060
skip = "*.cif,*.dat,*agr"
6161

6262
[tool.black]
63-
line-length = 115
63+
line-length = 79
6464
include = '\.pyi?$'
6565
exclude = '''
6666
/(

0 commit comments

Comments
 (0)