-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1 of the .editorconfig file for this project.
- Loading branch information
1 parent
be1c95d
commit e97e4ec
Showing
1 changed file
with
92 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,92 @@ | ||
# Start of script | ||
|
||
# Editor configuration file for Seanpm2001/uOffice | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Markdown | ||
[*.md *.mkd *.mdown *.markdown] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# YAML (YAML Ain't Markup Language) | ||
[*.yml *.yaml] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Plain Text | ||
[*.txt] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Makefile (GNU Make) | ||
[*.mk] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Python | ||
[*.py] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Java | ||
[*.java] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# Visual Basic Script (VBS) | ||
[*.vbs] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
line_wrap_mode = soft wrap | ||
|
||
# File info | ||
|
||
# File type: Editorconfig file (*.editorconfig) | ||
# File version: 1 (Thursday, 2021 October 21st at 2;47 pm) | ||
# Line count (including blank lines and compiler line): 93 | ||
|
||
# End of script |