File: .pre-commit-config.yaml

package info (click to toggle)
pyresample 1.35.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,880 kB
  • sloc: python: 20,340; cpp: 463; makefile: 105
file content (43 lines) | stat: -rw-r--r-- 1,085 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
exclude: '^$'
fail_fast: false
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
  rev: 'v0.14.7'
  hooks:
  - id: ruff
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v6.0.0
  hooks:
    - id: trailing-whitespace
    - id: end-of-file-fixer
    - id: check-yaml
      args: [--unsafe]
- repo: https://github.com/PyCQA/bandit
  rev: '1.9.2' # Update me!
  hooks:
    - id: bandit
      args: [--ini, .bandit]
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: 'v1.19.0'  # Use the sha / tag you want to point at
  hooks:
    - id: mypy
      additional_dependencies:
        - types-docutils
        - types-PyYAML
        - types-requests
        - type_extensions
        - types-setuptools
        # Typed libraries
        - numpy
        - pytest
      args: [ --warn-unused-configs ]
- repo: https://github.com/pycqa/isort
  rev: 7.0.0
  hooks:
    - id: isort
      language_version: python3
ci:
  # To trigger manually, comment on a pull request with "pre-commit.ci autofix"
  autofix_prs: false
  autoupdate_schedule: "monthly"
  skip: [bandit]