spb/qwhpi Public
QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.
Python 63.9%
TypeScript 25.4%
CSS 5.5%
TeX 3.5%
SQL 0.8%
Makefile 0.5%
Dockerfile 0.5%
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File : .pre-commit-config.yaml6# Purpose : Pre-commit hooks — mandatory header check, lint, type hygiene.7# =============================================================================89repos:10 - repo: local11 hooks:12 - id: qwhpi-headers13 name: QWHPI author-header check14 entry: python3 scripts/check_headers.py15 language: system16 pass_filenames: true17 types_or: [python, ts, tsx, javascript, css, sql, yaml, toml, shell]18 - repo: https://github.com/astral-sh/ruff-pre-commit19 rev: v0.6.920 hooks:21 - id: ruff22 args: [--fix]23