[Bf-blender-cvs] [b7b7468befb] master: editorconfig: add line length, glsl

Campbell Barton noreply at git.blender.org
Mon Jun 18 18:21:59 CEST 2018


Commit: b7b7468befbf401615d944df5263198d964fe19e
Author: Campbell Barton
Date:   Mon Jun 18 18:21:35 2018 +0200
Branches: master
https://developer.blender.org/rBb7b7468befbf401615d944df5263198d964fe19e

editorconfig: add line length, glsl

===================================================================

M	.editorconfig

===================================================================

diff --git a/.editorconfig b/.editorconfig
index d0e94a11ed0..af00a097621 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,10 +1,11 @@
 # C/C++
-[*.{c,cc,h,hh,inl}]
+[*.{c,cc,h,hh,inl,glsl}]
 charset = utf-8
 trim_trailing_whitespace = true
 insert_final_newline = true
 indent_style = space
 indent_size = 4
+max_line_length = 120
 
 # CMake & Text
 [*.{cmake,txt}]
@@ -13,6 +14,7 @@ trim_trailing_whitespace = true
 insert_final_newline = true
 indent_style = tab
 indent_size = 4
+max_line_length = 120
 
 # Python
 [*.py]
@@ -21,6 +23,7 @@ trim_trailing_whitespace = true
 insert_final_newline = true
 indent_style = space
 indent_size = 4
+max_line_length = 120
 
 # Shell
 [*.sh]
@@ -29,3 +32,4 @@ trim_trailing_whitespace = true
 insert_final_newline = true
 indent_style = tab
 indent_size = 4
+max_line_length = 120



More information about the Bf-blender-cvs mailing list