Code Quality

Use when checking code style, running pre-commit hooks, or before committing changes to ensure compliance with Google style guide

zilliztech 811b1a5 1.2 KB Updated

File contents

Code Quality

Code Style

  • Standard: Google C++ Style Guide
  • Line limit: 120 characters
  • Indent: 4 spaces
  • Config: See .clang-format in repo root

Pre-commit Hooks

Setup

pip3 install pre-commit
pre-commit install --hook-type pre-commit --hook-type pre-push

Usage

# Run on staged files
pre-commit run

# Run on specific files
pre-commit run --files src/index/hnsw/hnsw.cc include/knowhere/index/index.h

# Run on all files
pre-commit run --all-files

Commit Workflow

# 1. Make changes
# 2. Run pre-commit on changed files
pre-commit run --files <changed-files>

# 3. Stage and commit
git add .
git commit -m "message"

Common Issues

Issue Solution
Formatting errors Run clang-format -i <file> or let pre-commit fix it
Line too long Break line at logical points, max 120 chars
Include order Follow Google style: related header, C system, C++ standard, other libs, project headers

Pre-commit hooks run automatically on commit. Fix any failures before pushing.

zilliztech/knowhere/tree/main/.claude/skills/code-quality commit 811b1a5f2f

Frequently asked questions

npx skillmds@latest add zilliztech/code-quality