1
lxy 2016-09-25 11:23:42 +08:00 1
vscode 很少用。不过有个应该是通用的方法,在项目下新建一个.editorconfig 统一设置缩进。比如
# 4 space indentation [*.py] indent_style = space indent_size = 4 其它的可以去官网了解。 |
3
aisk 2016-09-25 11:36:32 +08:00 1
可以参考 editorconfig 的文档,如果不想每个项目都设置,在你所有项目的上层目录放这个文件: http://editorconfig.org
|