cursorless/.editorconfig
Cedric Halbronn f02014fe8e
Fixtures data (#2276)
## Checklist

- [ ] I have added
[tests](https://www.cursorless.org/docs/contributing/test-case-recorder/)
- [ ] I have updated the
[docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and
[cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet)
- [ ] I have not broken the cheatsheet

This is to prepare other IDE like neovim to use fixtures. I confirmed
all the tests passed. `7211 passing (4m)`. I fixed the references in the
documentation.

---------

Co-authored-by: Cedric Halbronn <cedric.halbronn@nccgroup.com>
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
2024-04-05 15:38:18 +00:00

39 lines
859 B
INI

# See https://EditorConfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_size = 2
indent_style = space
max_line_length = 80
trim_trailing_whitespace = true
[*.{py,talon}]
indent_style = space
indent_size = 4
[*.svg]
insert_final_newline = false
[*.{yml,yaml}]
# Trailing whitespace breaks yaml files if you use a multiline string
# with a line that has trailing white space. Many of our recorded
# tests use strings with trailing white space to represent the final
# document contents. For example
# data/fixtures/recorded/languages/ruby/changeCondition.yml
trim_trailing_whitespace = false
[Makefile]
indent_style = tab
[**/{vendor,generated}/**]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
trim_trailing_whitespace = unset
insert_final_newline = unset
max_line_length = unset