fn common_path_suffix(lhs_path: &Path, rhs_path: &Path) -> Option<String>
If lhs_path and rhs_path have a common ending, return that.
lhs_path
rhs_path
For example, given dir1/foo/bar.py and dir2/foo/bar.py, return foo/bar.py.
dir1/foo/bar.py
dir2/foo/bar.py
foo/bar.py