Browse Subversion Repository
Contents of /trunk/.editorconfig
Parent Directory
| Revision Log
Revision 9231 -
( show annotations)
( download)
Mon May 3 15:04:52 2021 UTC
(2 years, 11 months ago)
by zmatsuo
File size: 508 byte(s)
cmakeのインデントを2にした
- CMakeLists.txt と *.cmake のルールを1つにまとめた
| 1 |
root = true |
| 2 |
|
| 3 |
[*.{cpp,c,h}] |
| 4 |
indent_style = tab |
| 5 |
indent_size = 4 |
| 6 |
end_of_line = crlf |
| 7 |
charset = cp932 |
| 8 |
trim_trailing_whitespace = true |
| 9 |
insert_final_newline = true |
| 10 |
|
| 11 |
[*.html] |
| 12 |
end_of_line = crlf |
| 13 |
charset = cp932 |
| 14 |
indent_style = space |
| 15 |
|
| 16 |
[*.md] |
| 17 |
end_of_line = crlf |
| 18 |
charset = utf-8-bom |
| 19 |
indent_style = space |
| 20 |
|
| 21 |
[{CMakeLists.txt,*.cmake}] |
| 22 |
end_of_line = crlf |
| 23 |
charset = utf-8-bom |
| 24 |
indent_style = space |
| 25 |
indent_size = 2 |
| 26 |
|
| 27 |
[*.pl] |
| 28 |
end_of_line = crlf |
| 29 |
charset = utf-8-bom |
| 30 |
indent_style = tab |
| 31 |
indent_size = 4 |
|