Is there a way to enforce using tabs instead of spaces?

前端 未结 7 1718

StyleCop offers to check for consistent use of spaces, but sadly lacks the opposite idea: Force source code to use tabs. Is there some way to add this functionality? It does

7条回答
  •  佛祖请我去吃肉
    2021-01-01 18:29

    Do it within your source control server. Use a pre-commit script to check the file for lines starting with multiple spaces and prevent the commit.

    I agree tabs are better than spaces. It's a personal preference, but team consistency is very important.

提交回复
热议问题