You can specify the source form used in the source file using the -free and -fixed ifort command line options for free and fixed forms respectively.
As a separate issue, you can set the standard for diagnostics using the -stand [: xxx] option. This does not change the code generated by the compiler, it just changes the diagnostics that the compiler sets. This is equivalent to the gfortran option -std = xxx.
As another separate issue, you can point out that the compiler must change its behavior to comply with the Fortran standard using the -standard-semantics compiler parameter. This covers scenarios in which the compiler behavior has historically been different from that according to the Fortran standard, requiring or recommending.
As recommended in Vladimir’s comments and answer, the easiest option is to simply use .f90 for any free form source file (which will be considered as a free ifort form source in the absence of the -fixed command line option) no matter what standard he wrote.
source share