Uncrustify: Where do the options work?

Spaces for for loop

{
        for (i = 0;i < 10;i++)
        {
                b = i + 1;
        }

        for (;;)
        {
                b = b + 1;
        }
        for(auto x:std::as_const(str)) {}
}