File size: 383 Bytes
5fed0fc
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Pre-commit hook configuration
# Install with: pip install pre-commit && pre-commit install

repos:
  - repo: local
    hooks:
      - id: update-problem-count
        name: Update Problem Count
        entry: python3 scripts/update_problem_count.py
        language: system
        files: '^(research/|algorithmic/problems/)'
        pass_filenames: false
        stages: [commit]