2023-03-10 14:17:30 +01:00
|
|
|
exclude: \.min\.(js|css)(\.map)?$|^\.idea/
|
|
|
|
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-09 23:25:01 +02:00
|
|
|
rev: v4.5.0
|
2023-03-10 14:17:30 +01:00
|
|
|
hooks:
|
|
|
|
- id: check-ast
|
|
|
|
- id: check-json
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-xml
|
|
|
|
- id: check-yaml
|
|
|
|
args: [--allow-multiple-documents]
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: debug-statements
|
|
|
|
- id: detect-private-key
|
|
|
|
- id: pretty-format-json
|
|
|
|
args:
|
|
|
|
- --autofix
|
|
|
|
- --no-sort-keys
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args:
|
|
|
|
- --markdown-linebreak-ext=md
|
|
|
|
- id: check-executables-have-shebangs
|
|
|
|
- id: check-shebang-scripts-are-executable
|
|
|
|
- repo: https://github.com/psf/black
|
2023-09-12 13:12:55 +02:00
|
|
|
rev: 23.9.1
|
2023-03-10 14:17:30 +01:00
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
args: [--target-version, py37]
|