Files
typeshed/.editorconfig
Neil Girdhar 25009411db 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.
2023-12-19 01:21:01 +00:00

17 lines
255 B
INI

root = true
[*]
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
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