Skip to content

Commit

Permalink
core: Restrict one-off tool linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
GirlBossRush committed Jan 17, 2025
1 parent b15cc94 commit f69153f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import sys
import warnings

from authentik.lib.config import CONFIG
from cryptography.hazmat.backends.openssl.backend import backend
from defusedxml import defuse_stdlib
from django.utils.autoreload import DJANGO_AUTORELOAD_ENV

from authentik.lib.config import CONFIG
from lifecycle.migrate import run_migrations
from lifecycle.wait_for_db import wait_for_db

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exclude = 'node_modules'
[tool.ruff]
line-length = 100
target-version = "py312"
exclude = ["**/migrations/**", "**/node_modules/**"]
exclude = ["web/tools/**", "**/migrations/**", "**/node_modules/**"]

[tool.ruff.lint]
select = [
Expand Down

0 comments on commit f69153f

Please sign in to comment.