Add J-Phone and indicate 1.0 and 2.0 in vodafone.
[SquirrelJME.git] / ratufacoat / .editorconfig
blob67a83bf8cb6d50269ce70eb16496623930d6a89b
1 # ---------------------------------------------------------------------------
2 # SquirrelJME
3 #     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
4 # ---------------------------------------------------------------------------
5 # SquirrelJME is under the GNU General Public License v3+, or later.
6 # See license.mkd for licensing and copyright information.
7 # ---------------------------------------------------------------------------
8 # DESCRIPTION: EditorConfig Stylization <https://editorconfig.org/>
10 ### GLOBAL PROJECT SETTINGS ###
11 root = true
13 [*]
14 end_of_line = lf
15 insert_final_newline = true
16 tab_width = 4
17 indent_size = 4
18 max_line_length = 79
19 trim_trailing_whitespace = true
21 # Batch files are Windows specific
22 [*.bat]
23 end_of_line = crlf
24 insert_final_newline = unset
25 indent_style = unset
27 # CMake
28 [CMakeLists.txt]
29 charset = latin1
30 indent_style = tab
32 # Standard source code
33 [*.{md,mkd,c,cpp,h,java,js,json,j,sh,xpm,gradle}]
34 charset = latin1
35 indent_style = tab
36 trim_trailing_whitespace = false
37 curly_bracket_next_line = true
38 spaces_around_operators = false
39 spaces_around_brackets = false
40 indent_brace_style = Allman
41 wildcard_import_limit = 0
43 # Markdown may be in UTF-8, but uses different indentation depending on context
44 [*.{md,mkd}]
45 charset = utf-8
46 indent_style = unset