aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 22:23:33 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 22:23:33 +0100
commit6c8d1e91cb268e9040c79d753839ba2983896810 (patch)
treea438e892f5630ad72aabe8bbcc97bfc9886a1e0a
parentNewspipe requires Python>=3.10. (diff)
downloadnewspipe-6c8d1e91cb268e9040c79d753839ba2983896810.tar.gz
newspipe-6c8d1e91cb268e9040c79d753839ba2983896810.tar.bz2
newspipe-6c8d1e91cb268e9040c79d753839ba2983896810.zip
added .editorconfig file
-rw-r--r--.editorconfig16
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
bgstack15