我使用的是Android Studio,布局xml缩进对我来说有点错误的自动格式化。
而不是
<!-- case1: miss-diffs on git -->
<SomeXML
attr1="hello" >
</SomeXML>
或
<!-- case2: wrong end(?) indentation level -->
<SomeXML
attr1="world"
>
</SomeXML>
我想将我的xml格式化为
<SomeXML
attr1="hello"
>
</SomeXML>
这样我的git diff就不会显示来自case1的任何miss-diffs, 并且没有错误的缩进级别(case2)来迷惑自己。
intellij中有任何选项吗? 在此先感谢:)