Overview
Paradime comes pre-installed with pre-commits, making it easy to get started with code quality checks. You only need to configure the hooks you want to use, and Paradime handles the rest.Getting Started
To get started, Runparadime pre-commit in the terminal

Initial Setup
If your repository doesn’t have existing pre-commit configurations, Paradime offers standard recommended hooks to get you started. These include:- SQL formatting and linting using SQLFluff
- dbt models checks using dbt-checkpoint
- YAML validation using Prettier
- General code quality checks
.pre-commit-config.yaml
Running Pre-commit
You can run pre-commit checks in two ways:- All Files: Run checks on all files in your project
- Staged Files: Run checks only on files staged for commit

First-Time Installation
Note: When running pre-commits for the first time, Paradime will install all necessary hooks. This initial setup might take a minute to complete as it downloads and configures the required components.
- Start with Paradime’s recommended hooks
- Gradually customize configurations as needed
- Run checks manually before committing large changes
- Keep hook configurations in version control
- Manual Check Before Commit
- Checking Specific Files
- Updating Hook Configurations
- Modify
.pre-commit-config.yaml - Auto-update the config to the latest repos’ versions by executing
pre-commit autoupdate - Run
paradime pre-committo apply changes