Sometimes I add empty lines in my code to make it more readable,e.g.:
def example(self, x):
* if some_condition:
* * max_el = 0
* * for el in x:
* * * another_var = 0
* * * if el > max_el:
* * * * max_el = el
If the lines surrounding the empty code have the same indentation level, I'd like the empty line to be highlighted too.
def example(self, x):
* if some_condition:
* * max_el = 0
* *
* * for el in x:
* * * another_var = 0
* * *
* * * if el > max_el:
* * * * max_el = el