setup.cfg (12 lines of code) (raw):

[isort] profile = black src_paths = huggingface_sb3 [flake8] ignore = # W503,W504,E203,E231 # line breaks before and after binary operators # Ignore import not used when aliases are defined per-file-ignores = huggingface_sb3/__init__.py:F401 exclude = # No need to traverse our git directory .git, # There's no value in checking cache directories __pycache__, max-complexity = 15 # Black default max-line-length = 88