diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-02-12 22:17:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 22:17:33 (GMT) |
commit | 341d7874f063dcb141672b09f62c19ffedd0a557 (patch) | |
tree | b69f380cb726e490185d34a24c78ad0c31d39633 /.editorconfig | |
parent | bee2a11946a8d6df6b6c384abccf3dfb4e75d3fc (diff) | |
download | cpython-341d7874f063dcb141672b09f62c19ffedd0a557.zip cpython-341d7874f063dcb141672b09f62c19ffedd0a557.tar.gz cpython-341d7874f063dcb141672b09f62c19ffedd0a557.tar.bz2 |
gh-115317: Rewrite changelog filter to use vanilla JavaScript (#115324)
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig index 0169eed..a6187d6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,6 @@ root = true -[*.{py,c,cpp,h,rst,md,yml}] +[*.{py,c,cpp,h,js,rst,md,yml}] trim_trailing_whitespace = true insert_final_newline = true indent_style = space @@ -11,5 +11,5 @@ indent_size = 4 [*.rst] indent_size = 3 -[*.yml] +[*.{js,yml}] indent_size = 2 |