Can traefik yaml configuration files have more than 80 characters per line?

I'm aware that traefik doesn't have a linter, so I'm using a program called yamllint. When using this against my dynamic_config.yml file, it keeps coming up errors about certain line being longer than 80 characters. Here is an example from a middlewares:

        customResponseHeaders:
          - X-Robots-Tag: none,noindex,nofollow,noarchive,nosnippet,notranslate,noimageindex
        permissionsPolicy: camera=(), microphone=(), geolocation=(), payment=(), usb=(), vr=()

Does traefik adhere to this 80 character standard since when googling this on the web, it seems many many sites say yaml lines should be no more than 80 characters.

I would not expect an 80 character limit. It’s usually just for readability.