12 lines
419 B
YAML
12 lines
419 B
YAML
|
|
repos:
|
||
|
|
- repo: local
|
||
|
|
hooks:
|
||
|
|
- id: no-telegram-bot-token
|
||
|
|
name: Block Telegram bot tokens
|
||
|
|
# Matches tokens of format: 1234567890:AAFisjLS-yO_AmwqMjpBQgfV9qlHnexZlMs
|
||
|
|
# Pattern: 9-10 digits, colon, "AA", then 35 alphanumeric/dash/underscore chars
|
||
|
|
entry: '\d{9,10}:AA[A-Za-z0-9_-]{35}'
|
||
|
|
language: pygrep
|
||
|
|
types: [text]
|
||
|
|
exclude: '^\.pre-commit-config\.yaml$'
|