mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
3d0b66c825
According to https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length that is the correct value to disable this property.
28 lines
433 B
INI
28 lines
433 B
INI
root = true
|
|
|
|
[*]
|
|
indent_size = 4
|
|
indent_style = space
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
max_line_length = 100
|
|
|
|
[{Makefile,*.in}]
|
|
indent_style = tab
|
|
|
|
[*.{md,rst}]
|
|
trim_trailing_whitespace = false
|
|
|
|
[*.{sh,ac}]
|
|
indent_size = 2
|
|
|
|
[Dockerfile]
|
|
indent_size = 2
|
|
|
|
[share/{completions,functions}/**.fish]
|
|
max_line_length = off
|
|
|
|
[{COMMIT_EDITMSG,git-revise-todo}]
|
|
max_line_length = 80
|