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.
This commit is contained in:
Neil Girdhar
2023-12-18 20:21:01 -05:00
committed by GitHub
parent ad51dde631
commit 25009411db

View File

@@ -8,7 +8,9 @@ end_of_line = lf
indent_size = 2
[*.md]
max_line_length = 79
trim_trailing_whitespace = false
[*.{py,pyi,toml,json}]
max_line_length = 130
indent_size = 4