mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
* Update .editorconfig to reflect current style * .editorconfig use tabs for python * update msvc_build_libraries.py from two-space to tab indent * update test/src/tester.py from 4-space to tab indent
26 lines
316 B
INI
26 lines
316 B
INI
# EditorConfig is awesome: https://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
|
|
[CMakeLists.txt]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.{c,cc,h}]
|
|
indent_style = tab
|
|
|
|
[*.{c3}]
|
|
indent_style = tab
|
|
|
|
[*.{json,toml,yml,gyp}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.{py,pyi}]
|
|
indent_style = tab
|
|
|