File: .pre-commit-hooks.yaml

package info (click to toggle)
python-hacking 4.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 1,503; sh: 38; makefile: 23
file content (12 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
- id: hacking
  name: hacking
  description: 'Runs hacking, the OpenStack blend of flake8'
  entry: flake8
  language: python
  types: [python]
  require_serial: true
  additional_dependencies:
    # This enables the pep257 extra from hacking by default. If you want
    # to avoid it, just override additional_dependencies in your hook config
    # by listing only `- .`. We assume that most users want this feature.
    - .[pep257]