File: .pre-commit-hooks.yaml

package info (click to toggle)
python-pyproject-parser 0.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,432 kB
  • sloc: python: 3,086; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-   id: check-pyproject
    name: Validate 'pyproject.toml'
    description: Validate 'pyproject.toml'
    entry: pyproject-parser check
    language: python
    files: "^pyproject\\.toml$"
    additional_dependencies: ["consolekit>=1.1.2", "click>=7.1.2"]

-   id: reformat-pyproject
    name: Reformat 'pyproject.toml'
    description: Reformat 'pyproject.toml'
    entry: pyproject-parser reformat
    language: python
    files: "^pyproject\\.toml$"
    additional_dependencies: ["consolekit>=1.1.2", "click>=7.1.2"]