diff options
author | Alex <alexta69@gmail.com> | 2019-11-29 19:31:34 +0200 |
---|---|---|
committer | Alex <alexta69@gmail.com> | 2019-11-29 19:31:34 +0200 |
commit | 511404d23f5edd6ccf79db1fc1b0ba622134db24 (patch) | |
tree | 345fe66b840cd6496e1d4a7361a6b309519cad55 /.editorconfig | |
download | metube-511404d23f5edd6ccf79db1fc1b0ba622134db24.tar.gz metube-511404d23f5edd6ccf79db1fc1b0ba622134db24.tar.bz2 metube-511404d23f5edd6ccf79db1fc1b0ba622134db24.zip |
initial commit: working version
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..39a76e3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# Editor configuration, see https://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = off +trim_trailing_whitespace = false + +[*.py] +indent_size = 4 |