Skip to content

Commit

Permalink
fix(.editorconfig): limit UTF-8 w/o BOM only to LVGL...
Browse files Browse the repository at this point in the history
...and FREETYPE sub-modules.
  • Loading branch information
vwheeler63 committed Nov 25, 2024
1 parent 63a480c commit 6d4f926
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .editorconfig
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

Expand All @@ -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
Expand Down
17 changes: 17 additions & 0 deletions LvglPlatform/.editorconfig
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

0 comments on commit 6d4f926

Please sign in to comment.