Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/.editorconfig

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9449 - (hide annotations) (download)
Thu Sep 23 15:53:55 2021 UTC (2 years, 6 months ago) by zmatsuo
File size: 847 byte(s)
cmakeビルド時,cygtoolをビルド中のコンパイラを使用するようにした

- 変更前は指定していなかった
  - "Visual Studio 16 2019" 固定になっていた
- ソースツリー内にビルドフォルダ作らないようにした
  - 変更前は "cygtool/build" 固定だった
- .editorconfig にルール追加
  - cmakeファイルの行末スペース、ファイル末の改行を削除するようにした
- msys2でビルドエラーが出ないよう修正
1 zmatsuo 8803 root = true
2    
3 zmatsuo 9281 [*]
4     indent_style = tab
5     indent_size = 4
6    
7 zmatsuo 8803 [*.{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 zmatsuo 8840 indent_style = space
24 zmatsuo 8803
25 zmatsuo 9202 [*.pl]
26     end_of_line = crlf
27     charset = utf-8-bom
28     indent_style = tab
29     indent_size = 4
30 zmatsuo 9281
31     [*.txt]
32     end_of_line = crlf
33     charset = cp932
34     indent_style = tab
35     indent_size = 4
36 zmatsuo 9302
37 zmatsuo 9325 [*.asm]
38     end_of_line = crlf
39     charset = utf8
40     indent_style = space
41     indent_size = 4
42     trim_trailing_whitespace = true
43     insert_final_newline = true
44    
45 zmatsuo 9302 [{CMakeLists.txt,*.cmake}]
46     end_of_line = crlf
47     charset = utf-8-bom
48     indent_style = space
49     indent_size = 2
50 zmatsuo 9449 trim_trailing_whitespace = true
51     insert_final_newline = true

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26