Add .editorconfig file 14/64214/5
authorThanh Ha <zxiiro@gmail.com>
Sat, 6 Jun 2020 13:32:36 +0000 (09:32 -0400)
committerThanh Ha <zxiiro@gmail.com>
Sat, 6 Jun 2020 15:21:59 +0000 (11:21 -0400)
EditorConfig is a universal editor configuration file supported by many
IDEs and Editors (although some might require installing a plugin) to
share consistent editor configuration with developers using different
editors.

This also updates the README.md file to remove the single item bullet
list as that was causing prettier to reformat the bullet item to insert
extra spacing between the '-' and first word in the list.

Ref: https://editorconfig.org/
Change-Id: I22605008837c567d9f6a62abfc85a195acc708c6
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
.editorconfig [new file with mode: 0644]
README.md

diff --git a/.editorconfig b/.editorconfig
new file mode 100644 (file)
index 0000000..1b9c2ba
--- /dev/null
@@ -0,0 +1,24 @@
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = space
+
+[*.json]
+indent_size = 2
+
+[*.rst]
+indent_size = 4
+
+[*.md]
+indent_size = 4
+max_line_length = 80
+
+[*.sh]
+indent_size = 4
+max_line_length = 80
+
+[*.yaml]
+indent_size = 2
index 7531926..e318c04 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,4 +6,4 @@ managed Jenkins instance, there are other jobs defined which may be helpful
 to projects that use the same build technology. The intention is to help
 projects save time from having to define their own job templates.
 
-Documentation <http://docs.releng.linuxfoundation.org/projects/global-jjb>
+Documentation <http://docs.releng.linuxfoundation.org/projects/global-jjb>