mirror of
https://github.com/mpv-player/mpv
synced 2025-02-05 06:31:47 +00:00
9737b99845
This reverts commit 3840c98b36
.
There are multiple reasons:
- the correct way to prevent tabs being mistakenly added is a CI linting step
- it can affect the editing experience of foreign source files
under mpv's tree (e.g. subprojects)
- at least one editor (BBEdit) misinterprets the values and also turns
soft tabs into 7 spaces
- it does not consistently apply to GH code view either
16 lines
279 B
INI
16 lines
279 B
INI
# To use this config on you editor, follow the instructions at:
|
|
# http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 80
|
|
trim_trailing_whitespace = true
|
|
|
|
[.git/COMMIT*]
|
|
max_line_length = 72
|