Noticed in this code snippet, autoformat in VS Code results in this:
function FNV_1A (S : String) return String_Hash is
begin
return Value : String_Hash := 14_695_981_039_346_656_037 do
for C:Character of S loop
Value := Value xor Character'Pos (C);
Value := Value * 1099511628211;
end loop;
end return;
end FNV_1A;
This triggers a GNAT warning: (style) space required [-gnatyt] between the C and : of the for loop.