Fix: EEVEE-Next: Principled BSDF transmission color applied twice
[blender.git] / .editorconfig
blob6e786cce49f188f84d25df5a87fd2dd543915ce0
1 # C/C++
2 [*.{c,cc,h,hh,inl,glsl}]
3 charset = utf-8
4 trim_trailing_whitespace = true
5 insert_final_newline = true
6 indent_style = space
7 indent_size = 2
8 max_line_length = 99
10 # CMake & Text
11 [*.{cmake,txt}]
12 charset = utf-8
13 trim_trailing_whitespace = true
14 insert_final_newline = true
15 indent_style = space
16 indent_size = 2
17 max_line_length = 99
19 # Python
20 [*.py]
21 charset = utf-8
22 trim_trailing_whitespace = true
23 insert_final_newline = true
24 indent_style = space
25 indent_size = 4
26 max_line_length = 120
28 # Shell
29 [*.sh]
30 charset = utf-8
31 trim_trailing_whitespace = true
32 insert_final_newline = true
33 indent_style = space
34 indent_size = 2
35 max_line_length = 99
37 # Tom's Obvious Minimal Language
38 [*.toml]
39 charset = utf-8
40 trim_trailing_whitespace = true
41 insert_final_newline = true
42 indent_style = space
43 indent_size = 4
44 max_line_length = 120
46 # reStructuredText
47 [*.rst]
48 charset = utf-8
49 trim_trailing_whitespace = true
50 insert_final_newline = true
51 indent_style = space
52 indent_size = 3
53 max_line_length = 120
55 # Makefile
56 [{Makefile,GNUmakefile}]
57 charset = utf-8
58 trim_trailing_whitespace = true
59 insert_final_newline = true
60 indent_style = tab
61 indent_size = 4
62 max_line_length = 120
64 # HTML
65 [*.html]
66 charset = utf-8
67 trim_trailing_whitespace = true
68 insert_final_newline = true
69 indent_style = space
70 indent_size = 2
71 max_line_length = 99