Closed
Description
Running swiftlint --progress
in my repos folder, outputs various warnings for each folder.
However, many of the outputted lines wrap to the next line, because the full absolute path is printed (and that is too long for a single line).
It would be nice if we can have swiftlint only print the relative path (pwd
+ /warning_folder
), so as to stay on a single line more often.
So instead of printing this:
/Users/dani/Documents/repos/mathee/AppDelegate.swift:16:8: warning: Todo Violation: TODOs should be resolved (Shabbos). (todo)
To print this:
/mathee/AppDelegate.swift:16:8: warning: Todo Violation: TODOs should be resolved (Shabbos). (todo)