This example triggers two violations (with preview enabled), is this intentional?
$ ruff check --isolated --preview --select A test.py
test.py:1:8: A002 Argument `id` is shadowing a Python builtin
|
1 | lambda id: id + 1
| ^^ A002
|
test.py:1:8: A006 Lambda argument `id` is shadowing a Python builtin
|
1 | lambda id: id + 1
| ^^ A006
|
$ ruff --version
ruff 0.7.2