diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2022-01-02 22:23:33 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2022-01-02 22:23:33 +0100 |
commit | 6c8d1e91cb268e9040c79d753839ba2983896810 (patch) | |
tree | a438e892f5630ad72aabe8bbcc97bfc9886a1e0a /.editorconfig | |
parent | Newspipe requires Python>=3.10. (diff) | |
download | newspipe-6c8d1e91cb268e9040c79d753839ba2983896810.tar.gz newspipe-6c8d1e91cb268e9040c79d753839ba2983896810.tar.bz2 newspipe-6c8d1e91cb268e9040c79d753839ba2983896810.zip |
added .editorconfig file
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 00000000..1342eaeb --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true +end_of_line = lf +charset = utf-8 +max_line_length = 88 + +[*.{yml,yaml,json,js,css,html}] +indent_size = 2 + +[*.{md,rst}] +trim_trailing_whitespace = false |