diff options
| author | Asif Saif Uddin <auvipy@gmail.com> | 2023-04-08 22:45:08 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-08 22:45:08 +0600 |
| commit | 973dc3790ac25b9da7b6d2641ac72d95470f6ed8 (patch) | |
| tree | 9e7ba02d8520994a06efc37dde05fba722138189 /setup.cfg | |
| parent | 7ceb675bb69917fae182ebdaf9a2298a308c3fa4 (diff) | |
| parent | 2de7f9f038dd62e097e490cb3fa609067c1c3c36 (diff) | |
| download | kombu-py310.tar.gz | |
Merge branch 'main' into py310py310
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -12,6 +12,41 @@ all_files = 1 # whenever it makes the code more readable. extend-ignore = W504, N806, N802, N801, N803 +[isort] +add_imports = + from __future__ import annotations + +[mypy] +warn_unused_configs = True +strict = False +follow_imports = skip +show_error_codes = True +disallow_untyped_defs = True +ignore_missing_imports = True +files = + kombu/abstract.py, + kombu/utils/time.py, + kombu/utils/uuid.py, + t/unit/utils/test_uuid.py, + kombu/utils/text.py, + kombu/exceptions.py, + t/unit/test_exceptions.py, + kombu/clocks.py, + t/unit/test_clocks.py, + kombu/__init__.py, + kombu/asynchronous/__init__.py, + kombu/asynchronous/aws/__init__.py, + kombu/asynchronous/aws/ext.py, + kombu/asynchronous/aws/sqs/__init__.py, + kombu/asynchronous/aws/sqs/ext.py, + kombu/asynchronous/http/__init__.py, + kombu/transport/__init__.py, + kombu/transport/virtual/__init__.py, + kombu/utils/__init__.py, + kombu/matcher.py, + kombu/asynchronous/semaphore.py + + [pep257] ignore = D102,D104,D203,D105,D213 |
