mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
a8e333d79a
* Buffer standard input line-by-line * Add non-root .editorconfig for JS & HTML indent * Add support for clearing REPL with CTRL+L * Support unicode in stdout and stderr * Remove \r\n normalization * Note that local .editorconfig file extends root * Only normalize lone \r characters (convert to \n) * Skip non-printable characters in buffered input * Fix Safari bug (regex lookbehind not supported) Co-authored-by: Christian Heimes <christian@python.org>
8 lines
164 B
INI
8 lines
164 B
INI
root = false # This extends the root .editorconfig
|
|
|
|
[*.{html,js}]
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|