forked from OpenSmalltalk/opensmalltalk-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initiate .editorconfig files [ci skip]
These files enable automatic configuration of text editors regarding indentation, encoding, line-ending etc... Please install the editorconfig plugin if not supported natively See https://editorconfig.org
- Loading branch information
1 parent
af24eab
commit c10131f
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# See https://editorconfig.org | ||
# top-most editorconfig file | ||
root = true | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.{c,h,m,st}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.{yml,ston}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{xml}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# See https://editorconfig.org | ||
|
||
# a specific style has been used for win32 sources | ||
# This config works for Notepad++ & VisualStudio | ||
# Unfortunately, this does not work in VSCode | ||
# See https://github.com/editorconfig/editorconfig-vscode/issues/190 | ||
[*.{c,h}] | ||
indent_style = space | ||
tab_width = 8 | ||
indent_size = 2 | ||
|