预提交检查 yaml 错误:“需要流中的单个文档”

her*_*rin 5 yaml pre-commit.com

我将预提交与这个 .pre-commit-config.yaml 文件(提取)一起使用:

-   repo: https://github.com/pre-commit/pre-commit-hooks
    sha: v0.9.2
    hooks:
    -   id: trailing-whitespace
    -   id: end-of-file-fixer
    -   id: check-yaml
Run Code Online (Sandbox Code Playgroud)

我被这个错误困住了:

Check Yaml...................Failed
hookid: check-yaml

expected a single document in the stream
  in "modules.yml", line 1, column 1
but found another document
  in "modules.yml", line 4, column 1
Run Code Online (Sandbox Code Playgroud)

我的 yaml 文件的开头是:

repo: ssh://git.tranquilit.local/odoo-11-oca-tis/OCB.git
root: 8.0
branch: 8.0-tis
---
repo: ssh://git.tranquilit.local/odoo-71-tis/tis-addons.git
origin: tis
branch: 8.0
modules:
    #- attachment_rename
    #- partner_firstname
    - tis_account_analytic_recurrent_invoicing
Run Code Online (Sandbox Code Playgroud)

我尝试使用和不使用前导行 --- 但它只更改了错误的行 nb。

我没有在网络上的任何地方找到任何帮助,所以如果有人可以帮助我,我会很高兴!

提前致谢, Herve

her*_*rin 11

该问题现已在预提交版本 1.1.0 中解决:https : //github.com/pre-commit/pre-commit/issues/635 感谢您的帮助。

您可以通过设置启用此新选项args: [--allow-multiple-documents],例如:

    hooks:
    -   id: check-yaml
        args: [--allow-multiple-documents]
Run Code Online (Sandbox Code Playgroud)