🎨(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
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: create.
"""
# pylint: disable=W0621,W0613
# pylint: disable=redefined-outer-name,unused-argument
from django.core.cache import cache
import pytest
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: creation callback functionality.
"""
# pylint: disable=W0621,W0613
# pylint: disable=redefined-outer-name,unused-argument
from django.core.cache import cache
import pytest
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: invite.
"""
# pylint: disable=W0621,W0613
# pylint: disable=redefined-outer-name,unused-argument
import json
import random
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: participants management.
"""
# pylint: disable=W0621,W0613, W0212
# pylint: disable=redefined-outer-name,unused-argument,protected-access
import random
from unittest import mock
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: start recording.
"""
# pylint: disable=W0621,W0613
# pylint: disable=redefined-outer-name,unused-argument
from unittest import mock
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: stop recording.
"""
# pylint: disable=W0621,W0613
# pylint: disable=redefined-outer-name,unused-argument
from unittest import mock
@@ -2,7 +2,7 @@
Test LiveKit webhook endpoint on the rooms API.
"""
# pylint: disable=R0913,W0621,R0917,W0613
# pylint: disable=too-many-arguments,redefined-outer-name,too-many-positional-arguments,unused-argument
import base64
import hashlib
import json