
I saved the `file_types.json` file and got a diff because it had some trailing whitespace. I ran [`lineman`](https://github.com/JosephTLyons/lineman) on the codebase. I've done this before, but this time, I've added in the following settings to our `.zed` local settings, to make sure every future save respects our desire to have consistent whitespace formatting. ```json "remove_trailing_whitespace_on_save": true, "ensure_final_newline_on_save": true ``` Release Notes: - N/A
14 lines
379 B
Scheme
14 lines
379 B
Scheme
("[" @open "]" @close)
|
|
("{" @open "}" @close)
|
|
("\"" @open "\"" @close)
|
|
("do" @open "end" @close)
|
|
|
|
(block_parameters "|" @open "|" @close)
|
|
(interpolation "#{" @open "}" @close)
|
|
|
|
(if "if" @open "end" @close)
|
|
(unless "unless" @open "end" @close)
|
|
(begin "begin" @open "end" @close)
|
|
(module "module" @open "end" @close)
|
|
(_ . "def" @open "end" @close)
|
|
(_ . "class" @open "end" @close)
|