Browse Subversion Repository
Contents of /trunk/.editorconfig
Parent Directory
| Revision Log
Revision 9281 -
( show annotations)
( download)
Tue May 25 14:02:57 2021 UTC
(2 years, 10 months ago)
by zmatsuo
File size: 637 byte(s)
txtファイルのルールを追加
- txtファイルのルールを追加
- 指定がないファイル種別の時のインデントを記述した
- .hhc ファイルなどで有効
- tab幅4,ハードタブ
| 1 |
root = true |
| 2 |
|
| 3 |
[*] |
| 4 |
indent_style = tab |
| 5 |
indent_size = 4 |
| 6 |
|
| 7 |
[*.{cpp,c,h}] |
| 8 |
indent_style = tab |
| 9 |
indent_size = 4 |
| 10 |
end_of_line = crlf |
| 11 |
charset = cp932 |
| 12 |
trim_trailing_whitespace = true |
| 13 |
insert_final_newline = true |
| 14 |
|
| 15 |
[*.html] |
| 16 |
end_of_line = crlf |
| 17 |
charset = cp932 |
| 18 |
indent_style = space |
| 19 |
|
| 20 |
[*.md] |
| 21 |
end_of_line = crlf |
| 22 |
charset = utf-8-bom |
| 23 |
indent_style = space |
| 24 |
|
| 25 |
[{CMakeLists.txt,*.cmake}] |
| 26 |
end_of_line = crlf |
| 27 |
charset = utf-8-bom |
| 28 |
indent_style = space |
| 29 |
indent_size = 2 |
| 30 |
|
| 31 |
[*.pl] |
| 32 |
end_of_line = crlf |
| 33 |
charset = utf-8-bom |
| 34 |
indent_style = tab |
| 35 |
indent_size = 4 |
| 36 |
|
| 37 |
[*.txt] |
| 38 |
end_of_line = crlf |
| 39 |
charset = cp932 |
| 40 |
indent_style = tab |
| 41 |
indent_size = 4 |
|