Skip to content

Commit d86a50f

Browse files
committed
Update .flake8 configuration to ignore F401 in main.py
- Added per-file ignores for F401 in main.py to prevent linting errors related to unused imports.
1 parent 596ada9 commit d86a50f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

commitly-backend/.flake8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ exclude = .git,__pycache__,venv,.venv,migrations,alembic,conftest.py
66
# For Black compatibility
77
extend-ignore = E203, W503, I101
88

9+
per-file-ignores =
10+
main.py:F401
11+
912
# import order plugin (flake8-import-order)
1013
import-order-style = google
1114

0 commit comments

Comments
 (0)