Ansible-lint skip-list numbers overview

I’m using ansible-lint in some scripts, and that has a few compact command line options, notably -x 106,205, which is the skip-list.
I am looking at this again after a while, I can find the list of rules (index - Ansible Lint Documentation), but I cannot find a list with the corresponding numbers.
Any ideas?

This list looks like the place to find them:

RENAMED_TAGS = {
    "102": "no-jinja-when",
    "104": "deprecated-bare-vars",
    "105": "deprecated-module",
    "106": "role-name",
    "202": "risky-octal",
    "203": "no-tabs",
    "205": "playbook-extension",
1 Like

That’s conveniently buried away, but at least it does say those IDs are deprecated. thx!

1 Like