Some patterns are so common that the "lint-skip" syntax feels like it is part of the language.
```
try:
import tomllib # pylint: disable=import-outside-toplevel
except ImportError:
import tomli as tomllib # pylint: disable=import-outside-toplevel
```
DSLs in comments feel like a missing language feature
♡ 1 ↻ 0