You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.cfg 715 B

3 years ago
1234567891011121314151617181920212223
  1. [isort]
  2. line_length=100
  3. multi_line_output=4
  4. known_standard_library=numpy,setuptools
  5. known_myself=detectron2
  6. known_third_party=fvcore,matplotlib,cv2,torch,torchvision,PIL,pycocotools,yacs,termcolor,cityscapesscripts,tabulate,tqdm,scipy,lvis,psutil
  7. no_lines_before=STDLIB,THIRDPARTY
  8. sections=FUTURE,STDLIB,THIRDPARTY,myself,FIRSTPARTY,LOCALFOLDER
  9. default_section=FIRSTPARTY
  10. [mypy]
  11. python_version=3.6
  12. ignore_missing_imports = True
  13. warn_unused_configs = True
  14. disallow_untyped_defs = True
  15. check_untyped_defs = True
  16. warn_unused_ignores = True
  17. warn_redundant_casts = True
  18. show_column_numbers = True
  19. follow_imports = silent
  20. allow_redefinition = True
  21. ; Require all functions to be annotated
  22. disallow_incomplete_defs = True

No Description