mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-01 11:22:49 +08:00
Summary: Lint related fixes: Improve internal/OSS consistency. Fix the fight between black and certain pyre-ignore markers by moving them to the line before. Use clang-format-8 automatically if present. Small number of pyre fixes. arc doesn't run pyre at the moment, so I put back the explicit call to pyre. I don't know if there's an option somewhere to change this. Reviewed By: nikhilaravi Differential Revision: D19780518 fbshipit-source-id: ef1c243392322fa074130f6cff2dd8a6f7738a7f
14 lines
465 B
INI
14 lines
465 B
INI
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
[isort]
|
|
line_length=80
|
|
include_trailing_comma=True
|
|
multi_line_output=3
|
|
known_standard_library=numpy,setuptools
|
|
known_myself=pytorch3d
|
|
known_third_party=fvcore,torch,torchvision,matplotlib,mpl_toolkits,PIL,yaml
|
|
jinja2,requests,nbformat,nbconvert,bs4
|
|
no_lines_before=STDLIB,THIRDPARTY
|
|
sections=FUTURE,STDLIB,THIRDPARTY,myself,FIRSTPARTY,LOCALFOLDER
|
|
default_section=FIRSTPARTY
|