summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 57fd5779b702fe43503fddc425eeb6677b656df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
exclude: ^(.bzr|\.direnv|\.eggs|\.git|\.hg|\.mypy_cache|\.nox|\.pants\.d|\.svn|\.tox|\.venv|_build|buck-out|build|dist|node_modules|venv|\.idea|dockerdata|static|.*\b(migrations)\b.*)
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
  rev: v0.3.0
  hooks:
    - id: ruff
      args: [--fix]
    - id: ruff-format
    - id: ruff
      name: ruff-isort
      args: [--select, I, --fix]