Skip to content

Commit 2500941

Browse files
authored
Set the maximum line length in .editorconfig (#11184)
* 130 matches what the linter and formatter are told for Python files. * 79 appears to be the limit for README.md.
1 parent ad51dde commit 2500941

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ end_of_line = lf
88
indent_size = 2
99

1010
[*.md]
11+
max_line_length = 79
1112
trim_trailing_whitespace = false
1213

1314
[*.{py,pyi,toml,json}]
15+
max_line_length = 130
1416
indent_size = 4

0 commit comments

Comments
 (0)