Skip to content

Commit

Permalink
Set the maximum line length in .editorconfig (#11184)
Browse files Browse the repository at this point in the history
* 130 matches what the linter and formatter are told for Python files.
* 79 appears to be the limit for README.md.
  • Loading branch information
NeilGirdhar authored Dec 19, 2023
1 parent ad51dde commit 2500941
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2500941

Please sign in to comment.