refactor: Compiled ignored ruff rules in pyproject

This commit is contained in:
JSC
2025-08-01 09:40:15 +02:00
parent fceff92ca1
commit f68f4d9046
30 changed files with 22 additions and 31 deletions

View File

@@ -1,5 +1,4 @@
"""Tests for API token endpoints."""
# ruff: noqa: ARG002, PLR2004, PLC0415, BLE001, E501
from datetime import UTC, datetime, timedelta
from unittest.mock import patch

View File

@@ -1,5 +1,4 @@
"""Tests for authentication endpoints."""
# ruff: noqa: ARG002, PLR2004, E501, PLC0415, ANN401
from typing import Any
from unittest.mock import patch

View File

@@ -1,5 +1,4 @@
"""Tests for extraction API endpoints."""
# ruff: noqa: PLR2004, E501
import pytest

View File

@@ -1,5 +1,4 @@
"""Tests for player API endpoints."""
# ruff: noqa: ARG002, PLR2004, ANN001, ANN201
from unittest.mock import AsyncMock, Mock, patch

View File

@@ -1,5 +1,4 @@
"""Tests for playlist API endpoints."""
# ruff: noqa: ARG002, PLR2004, E501, PLC0415
import pytest

View File

@@ -1,5 +1,4 @@
"""Tests for socket API endpoints."""
# ruff: noqa: ARG002, PLR2004, ANN001, ANN201
from unittest.mock import AsyncMock, patch

View File

@@ -1,5 +1,4 @@
"""Tests for sound API endpoints."""
# ruff: noqa: ARG002, PLR2004, E501, PLC0415, ANN001, ANN202
from typing import TYPE_CHECKING
from unittest.mock import patch

View File

@@ -1,5 +1,4 @@
"""Tests for VLC player API endpoints."""
# ruff: noqa: ARG002, PLR2004, E501
from unittest.mock import AsyncMock