aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.editorconfig
diff options
context:
space:
mode:
authorJuhani Krekelä2025-02-16 01:17:26 +0200
committerWolfgang Müller2025-02-16 12:40:39 +0100
commite79bd1baca0d8763b9a58fda686abf7fe36fe108 (patch)
tree8716a78bfcc8c0cc42f64f02e1cf9d29bcd96c4f /.editorconfig
parentcfb490601f2d7045499d3556201992765db13ce4 (diff)
downloadlater-e79bd1baca0d8763b9a58fda686abf7fe36fe108.tar.gz
Apply .editorconfig indent settings to all .py files
As all of the code was originally in a file named "later", the Python indentation settings in .editorconfig were hardcoded to only apply to it. Since the code is now split into several .py files, change the indentation settings to apply to .py files generally.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index ba8334d..17c6ba2 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -4,7 +4,7 @@ root = true
insert_final_newline = true
trim_trailing_whitespace = true
-[later]
+[*.py]
indent_size = 4
indent_style = space