Browse Source

add my own .editorconfig

Gwyneth Llewelyn 8 months ago
parent
commit
a4941fe372
1 changed files with 29 additions and 0 deletions
  1. 29 0
      .editorconfig

+ 29 - 0
.editorconfig

@@ -0,0 +1,29 @@
+# top-most EditorConfig file
+root = true
+
+# Unix-style newlines with a newline ending every file
+[*]
+end_of_line = lf
+charset = utf-8
+indent_style = tab
+indent_size = tab
+tab_width = 4
+trim_trailing_whitespace = true
+
+# The property below is not yet universally supported
+[*.md]
+max_line_length = 108
+word_wrap = true
+# Markdown sometimes uses two spaces at the end to
+#  mark soft line breaks
+trim_trailing_whitespace = false
+
+[*.css]
+indent_style = space
+indent_size = 2
+
+# Linden Scripting Language abhors tabs
+[*.lsl]
+max_line_length = 108
+indent_style = space
+indent_size = 4