mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-24 15:07:37 +03:00
64af41c298
Do not trim trailing whitespaces in `expected` files. Some on them have trailing whitespaces: `rg ' $' -g expected` reports 26 files.
46 lines
671 B
INI
46 lines
671 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Defaults for every file
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
|
|
# Idris source files
|
|
[{*.idr,*.ipkg,*.tex,*.yaff,*.lidr}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Various configuration files
|
|
[*.yml,.ecrc]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[{*.c,*.h}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.{md,rst}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[{*.sh,*.bat}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[{Makefile,*.mk}]
|
|
indent_style = tab
|
|
|
|
[*.nix]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[expected]
|
|
trim_trailing_whitespace = false
|