mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-26 14:34:59 +00:00

# Aider chat conversation: USER: can we exclude all dirs named OLD? ASSISTANT: Here is the change to exclude all directories named "OLD" from the Jekyll build: _config.yml ```yaml <<<<<<< SEARCH exclude: - tmp.benchmarks ======= exclude: - tmp.benchmarks - "**/OLD" >>>>>>> REPLACE ``` This uses a glob pattern `**/OLD` to exclude any directory named "OLD" at any level in the directory tree.
17 lines
293 B
YAML
17 lines
293 B
YAML
theme: jekyll-theme-cayman
|
|
url: "https://aider.chat"
|
|
|
|
plugins:
|
|
- jekyll-redirect-from
|
|
- jekyll-sitemap
|
|
|
|
defaults:
|
|
- scope:
|
|
path: "README.md"
|
|
type: "pages"
|
|
values:
|
|
description: "A command-line chat tool for coding with GPT"
|
|
|
|
exclude:
|
|
- tmp.benchmarks
|
|
- "**/OLD"
|