Carl Shapiro pushed to branch master at cmucl / cmucl
Commits: 8b623d47 by Carl Shapiro at 2024-06-05T17:35:13-07:00 Add a .editorconfig file
Specifies the indent and line ending style globally and adds our indentation size for C code. Most of the popular editors and code hosting sites understand this file.
- - - - - d516417e by Carl Shapiro at 2024-06-06T00:38:22+00:00 Merge branch 'editorconfig' into 'master'
Add a .editorconfig file
See merge request cmucl/cmucl!226 - - - - -
1 changed file:
- + .editorconfig
Changes:
===================================== .editorconfig ===================================== @@ -0,0 +1,11 @@ +# http://editorconfig.org + +root = true + +[*] +indent_style = tab +insert_final_newline = true +tab_width = 8 + +[*.{c,h}] +indent_size = 4
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/2f9576c33d38346f26cb72f...