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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-06-18 19:09:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-18 19:09:45 +0300
commitce7c87fbda96cec7d1fe44c0b9e27e96748bfa8f (patch)
treeffa0ac91e5d3bf5912adf9c824c83054972f9e52 /.editorconfig
parent579631819f0136ab0fbb0f6c7c21265b468940dc (diff)
Add .editorconfig file
This is a fairly well supported file-type configuration for indentation and trailing space stripping. See editorconfig.org for details.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig31
1 files changed, 31 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000000..d0e94a11ed0
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,31 @@
+# C/C++
+[*.{c,cc,h,hh,inl}]
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = space
+indent_size = 4
+
+# CMake & Text
+[*.{cmake,txt}]
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = tab
+indent_size = 4
+
+# Python
+[*.py]
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = space
+indent_size = 4
+
+# Shell
+[*.sh]
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = tab
+indent_size = 4