Our coding standard at work requires the following array initialisations to have spaces in them:
int[] arr1 = { 1 };
int[] arr2 = { 2, 3 };
However, Resharper's auto-format is removing the spaces. I've looked in the locations recommended by this question but they are all about multi-line array declarations. Does anyone know if Resharper offers this option?