🎨(backend) use pylint error names instead of codes in disable comments

Replace pylint error codes with descriptive error names in disable comments
to make suppressed warnings explicit and improve code readability.
This commit is contained in:
lebaudantoine
2025-09-03 18:43:18 +02:00
committed by aleb_the_flash
parent 888fbbcd5f
commit 1f71bfc5d2
18 changed files with 18 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
"""LiveKit Events Service"""
# pylint: disable=E1101
# pylint: disable=no-member
import uuid
from enum import Enum

View File

@@ -1,6 +1,6 @@
"""Participants management service for LiveKit rooms."""
# pylint: disable=R0913,E0611,R0917
# pylint: disable=too-many-arguments,no-name-in-module,too-many-positional-arguments
# ruff: noqa:PLR0913
import json