nthPlusSpacing
Control whether there should be spaces around the + or - operator in βAn+Bβ selector syntax.
Default value is false.
Example for false
:nth-child(2n+1) {}
:nth-child(2n-1) {}
Example for true
:nth-child(2n + 1) {}
:nth-child(2n - 1) {}