Differences From Artifact [858e35d8c2]:
- File .editorconfig — part of check-in [cb4412b6c5] at 2019-10-04 01:16:52 on branch trunk — EditorConfig file for Fossil Project. See https://fossil-scm.org/forum/forumpost/7da5900698 for discussion. (user: ckennedy size: 251) [more...]
To Artifact [132c5a213a]:
- File .editorconfig — part of check-in [b86c8b476b] at 2019-11-09 04:27:43 on branch trunk — Told .editorconfig to use tabs for Makefiles, otherwise it mangles them with the default indention style (spaces). (user: stephan size: 299) [more...]
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + + |
# EditorConfig (https://editorconfig.com) Configuration for Fossil
#
# Following https://fossil-scm.org/fossil/doc/trunk/www/style.wiki
#
# Defaults for all files
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
[{Makefile,Makefile.*,*.mk}]
indent_style = tab
|