In my Github project I have this snippet in my powershell script:
param (
[string]$f,
[string]$l
)
The Super-linter shows me this error:
SC1036: '(' is invalid here. Did you forget to escape it?
but the code itself works. I also tried a disabling of this linter rule, but this was not working, unfortunately.