editorconfig: set default tab width to 8 (#9467)

Vim patches may include tabs in Vimscript test files.
editorconfig uses "indent_size" for tabs if "tab_width" is unset
so the user sees 2-width tabs.
这个提交包含在:
Jan Edmund Lazo 2019-01-06 20:15:19 -05:00 提交者 Justin M. Keyes
父节点 ea7504cf8e
当前提交 0c42e0e8b1
共有 1 个文件被更改,包括 1 次插入0 次删除

查看文件

@ -3,6 +3,7 @@ root = true
[*]
indent_style = space
indent_size = 2
tab_width = 8
end_of_line = lf
insert_final_newline = true
charset = utf-8