Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2020-09-19 12:39:13 +0300
committerGitHub <noreply@github.com>2020-09-19 12:39:13 +0300
commita66f4e1150eaaf2dce6d089e0ca2132a31bcd5b3 (patch)
tree1ed537d6f81eb46d9a15d474ffab98ecf9f3cf7f /.editorconfig
parent501df0dc4e289b04e73a9c64ca1ff2fda335536b (diff)
Added an .editorconfig file. (#8297)
https://editorconfig.org/ is meant as a guideline for editors how to format files.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 000000000..2fb012b14
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,18 @@
+# https://editorconfig.org/
+
+root = true
+
+[*]
+insert_final_newline = true
+trim_trailing_whitespace = true
+end_of_line = lf
+
+[*.py]
+indent_style = space
+indent_size = 4
+charset = utf-8
+max_line_length = 100
+
+[*.yaml]
+indent_style = space
+indent_size = 2