File: .pre-commit-config.yaml

package info (click to toggle)
python-dom-toml 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,908 kB
  • sloc: python: 1,360; makefile: 7
file content (96 lines) | stat: -rw-r--r-- 2,250 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# This file is managed by 'repo_helper'. Don't edit it directly.
---

exclude: ^tests/tests_for_tomliw/data/.*$

ci:
  autoupdate_schedule: quarterly

repos:
 - repo: https://github.com/repo-helper/pyproject-parser
   rev: v0.11.1
   hooks:
    - id: reformat-pyproject

 - repo: https://github.com/pre-commit/pre-commit-hooks
   rev: v3.4.0
   hooks:
    - id: check-added-large-files
    - id: check-ast
    - id: fix-byte-order-marker
    - id: check-byte-order-marker
    - id: check-case-conflict
    - id: check-executables-have-shebangs
    - id: check-json
    - id: check-toml
    - id: check-yaml
    - id: check-merge-conflict
    - id: check-symlinks
    - id: check-vcs-permalinks
    - id: detect-private-key
    - id: trailing-whitespace
    - id: mixed-line-ending
    - id: end-of-file-fixer

 - repo: https://github.com/domdfcoding/pre-commit-hooks
   rev: v0.4.0
   hooks:
    - id: requirements-txt-sorter
      args:
       - --allow-git
    - id: check-docstring-first
      exclude: ^(doc-source/conf|__pkginfo__|setup|tests/.*)\.py$
    - id: bind-requirements

 - repo: https://github.com/python-formate/flake8-dunder-all
   rev: v0.4.1
   hooks:
    - id: ensure-dunder-all
      files: ^dom_toml/.*\.py$

 - repo: https://github.com/domdfcoding/flake2lint
   rev: v0.4.3
   hooks:
    - id: flake2lint

 - repo: https://github.com/pre-commit/pygrep-hooks
   rev: v1.10.0
   hooks:
    - id: python-no-eval
    - id: rst-backticks
    - id: rst-directive-colons
    - id: rst-inline-touching-normal

 - repo: https://github.com/asottile/pyupgrade
   rev: v2.12.0
   hooks:
    - id: pyupgrade
      args:
       - --py36-plus
       - --keep-runtime-typing

 - repo: https://github.com/Lucas-C/pre-commit-hooks
   rev: v1.5.1
   hooks:
    - id: remove-crlf
    - id: forbid-crlf

 - repo: https://github.com/python-formate/snippet-fmt
   rev: v0.1.5
   hooks:
    - id: snippet-fmt

 - repo: https://github.com/python-formate/formate
   rev: v0.8.0
   hooks:
    - id: formate
      exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$

 - repo: https://github.com/python-coincidence/dep_checker
   rev: v0.8.0
   hooks:
    - id: dep_checker
      args:
       - dom_toml

# Custom hooks can be added below this comment