I modified some code on windows in NotePad ++ and the code looks like this :
public enum Example {
    HELLO,
    WORLD;
}
But when I raise a Pull Request on a repo hosted on bitbucket the same code appears as follows :
public enum Example {
    HELLO,
 WORLD;
}
What is the reason for this difference in indentation and how can I avoid this?
 
    

