gitextract_3wypp44j/ ├── .coveragerc ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── pre-commit-autoupdate.yml │ └── pre-commit.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .python-version ├── .style.yapf ├── .vimrc ├── .vscode/ │ ├── extensions.json │ └── settings.default.json ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── EDITOR SUPPORT.md ├── HACKING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── plugins/ │ ├── README.md │ ├── pre-commit.sh │ └── vim/ │ ├── autoload/ │ │ └── yapf.vim │ └── plugin/ │ └── yapf.vim ├── pylintrc ├── pyproject.toml ├── third_party/ │ ├── __init__.py │ └── yapf_third_party/ │ ├── __init__.py │ ├── _ylib2to3/ │ │ ├── Grammar.txt │ │ ├── LICENSE │ │ ├── PatternGrammar.txt │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── fixer_base.py │ │ ├── fixer_util.py │ │ ├── patcomp.py │ │ ├── pgen2/ │ │ │ ├── __init__.py │ │ │ ├── conv.py │ │ │ ├── driver.py │ │ │ ├── grammar.py │ │ │ ├── literals.py │ │ │ ├── parse.py │ │ │ ├── pgen.py │ │ │ ├── token.py │ │ │ └── tokenize.py │ │ ├── pygram.py │ │ └── pytree.py │ └── yapf_diff/ │ ├── LICENSE │ ├── __init__.py │ └── yapf_diff.py ├── tox.ini ├── yapf/ │ ├── __init__.py │ ├── __main__.py │ ├── _version.py │ ├── pyparser/ │ │ ├── __init__.py │ │ ├── pyparser.py │ │ ├── pyparser_utils.py │ │ ├── pyparser_visitor.py.tmpl │ │ └── split_penalty_visitor.py │ ├── pytree/ │ │ ├── __init__.py │ │ ├── blank_line_calculator.py │ │ ├── comment_splicer.py │ │ ├── continuation_splicer.py │ │ ├── pytree_unwrapper.py │ │ ├── pytree_utils.py │ │ ├── pytree_visitor.py │ │ ├── split_penalty.py │ │ └── subtype_assigner.py │ └── yapflib/ │ ├── __init__.py │ ├── errors.py │ ├── file_resources.py │ ├── format_decision_state.py │ ├── format_token.py │ ├── identify_container.py │ ├── line_joiner.py │ ├── logical_line.py │ ├── object_state.py │ ├── reformatter.py │ ├── split_penalty.py │ ├── style.py │ ├── subtypes.py │ └── yapf_api.py └── yapftests/ ├── __init__.py ├── blank_line_calculator_test.py ├── comment_splicer_test.py ├── file_resources_test.py ├── format_decision_state_test.py ├── format_token_test.py ├── line_joiner_test.py ├── logical_line_test.py ├── main_test.py ├── pytree_unwrapper_test.py ├── pytree_utils_test.py ├── pytree_visitor_test.py ├── reformatter_basic_test.py ├── reformatter_buganizer_test.py ├── reformatter_facebook_test.py ├── reformatter_pep8_test.py ├── reformatter_python3_test.py ├── reformatter_style_config_test.py ├── split_penalty_test.py ├── style_test.py ├── subtype_assigner_test.py ├── utils.py ├── yapf_test.py └── yapf_test_helper.py