PTH100 should suggest using Path.absolute() to replace os.path.abspath() instead of Path.resolve()

    "os.path.abspath": partial_error(
       id="PL100",
       message='os.path.abspath("foo") should be replaced by foo_path.resolve()',
   ),

at https://gitlab.com/RoPP/flake8-use-pathlib/-/blob/c591d56283440997fd8227e2a3772b58c31bb524/flake8_use_pathlib/checker.py#L112-115

should suggest to use Path.absolute() instead of Path.resolve(), for identical behavior.

Repro:

mkdir foo
touch foo/bar
ln -s foo baz
python -c "import os.path; from pathlib import Path; print(os.path.abspath('baz/bar')); print(Path('baz/bar').resolve()); print(Path('baz/bar').absolute());"

Which prints:

/prefix/baz/bar
/prefix/foo/bar
/prefix/baz/bar