├── .editorconfig ├── .github ├── semantic.yml └── workflows │ └── build.yml ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .python-version ├── LICENSE ├── README.md ├── package.json ├── renovate.json └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/pre-commit-hooks/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pre-commit==4.5.0 2 | --------------------------------------------------------------------------------