The Pascal language and Free Pascal compiler are not sensitive to white space
BUT the author is: had to much code where, after a long time debugging,
find the indentation has gone wrong due to refactoring or copy some code from
another project. Yea we have jedi code formatter (great project !)
But i need a report to tell me where about suspect indentation so i can
improve the code. Need to link the program to my editor so i get throwback
to the location where the error was found.
My preferred editor: https://www.geany.org/
Most problems on indentation are in the code like if-then-else.
An extremely simple example:
my code
if x > y then
aaa
else
bbb;
ccc;
A formatter will change it to
if x > y then
aaa
else
bbb;
ccc;
On a large file you won't notice the small change and spend a lot of time
debugging to find the error and finally create the code that should
have been there in the first place:
if x > y then
aaa
else
begin
bbb
ccc
end;