-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(.editorconfig): limit UTF-8 w/o BOM only to LVGL...
...and FREETYPE sub-modules.
- Loading branch information
1 parent
63a480c
commit 6d4f926
Showing
2 changed files
with
21 additions
and
5 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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
## | ||
## | ||
## PROJECT: Mouri Internal Library Essentials | ||
## FILE: .editorconfig | ||
## PURPOSE: The root .editorconfig file | ||
## | ||
## | ||
## LICENSE: The MIT License | ||
## | ||
## | ||
## MAINTAINER: MouriNaruto ([email protected]) | ||
## | ||
## | ||
|
||
root = true | ||
|
||
|
@@ -23,7 +23,6 @@ indent_size = 4 | |
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
vc_generate_documentation_comments = doxygen_slash_star | ||
charset = utf-8 | ||
|
||
[*.{cs,csx,vb,vbx,asmx}] | ||
indent_style = space | ||
|
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,17 @@ | ||
## | ||
## PROJECT: Mouri Internal Library Essentials | ||
## FILE: .editorconfig | ||
## PURPOSE: The .editorconfig file for only LVGL and FREETYPE sub-modules. | ||
It overrides some editor settings from the root .editorconfig file. | ||
## | ||
## LICENSE: The MIT License | ||
## | ||
## MAINTAINER: MouriNaruto ([email protected]) | ||
## | ||
|
||
[*] | ||
charset = utf-8-bom | ||
|
||
[*.{c,c++,cc,cpp,cxx,h,h++,hh,hpp,hxx,ixx,cppm,ipp,odl,idl,inl,ipp,tlh,tli}] | ||
charset = utf-8 | ||
|