Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A simple modern Python project template powered by [Copier](https://copier.readt
- 📦 **uv Package Manager**: Fast and reliable package management with [uv](https://github.com/astral-sh/uv)
- 🐳 **Docker Support**: Complete Docker development environment
- 📦 **Devcontainer Support**: VS Code devcontainer for consistent development
- ✨ **AI Editor Support**: [Cursor rules](https://docs.cursor.com/context/rules) and
- ✨ **AI Editor Support**: [AGENTS.md](https://agents.md) and
[CLAUDE.md](https://docs.anthropic.com/en/docs/claude-code/overview) included for AI-powered development
- 📝 **Type Hints**: Full type annotation support with modern Python features
- 🔍 **Code Quality**: Pre-configured Ruff for linting and formatting
Expand Down Expand Up @@ -109,8 +109,8 @@ your-project/

## AI Editor Support

- [Cursor Rules](./template/.cursor/rules/coding_style.mdc)
- [CLAUDE.md](./template/CLAUDE.md)
- [AGENTS.md(`./template/AGENTS.md`)](https://agents.md)
- [CLAUDE.md(`./template/CLAUDE.md`)](https://docs.claude.com/en/docs/claude-code/memory#claude-md-imports)

## Q&A

Expand Down
4 changes: 2 additions & 2 deletions template/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
repos:
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.7.11
rev: 0.8.22
hooks:
- id: uv-lock
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.12
rev: v0.13.2
hooks:
# Run the linter.
- id: ruff-check
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
---
description:
globs:
alwaysApply: true
---
# Development Guidelines

This document contains critical information about working with this codebase.
Expand Down
37 changes: 0 additions & 37 deletions template/CLAUDE.md

This file was deleted.

1 change: 1 addition & 0 deletions template/CLAUDE.md
1 change: 0 additions & 1 deletion template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ ignore = [
"SIM105", # try-except-pass blocks that can be replaced with the contextlib.suppress context manager.
"SIM108", # Use ternary operator instead of `if`-`else`-block
"SIM116", # Use a dictionary instead of consecutive `if` statements
"UP038", # (Deprecated) Use `X | Y` in `isinstance` call instead of `(X, Y)`
]
unfixable = [
"F401", # unused import
Expand Down