From e8c8b5cb4a72efdc69612e6313f9df0f25811187 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 7 Jul 2024 07:32:57 -0300 Subject: [PATCH] copy --- README.md | 6 +++--- aider/website/docs/usage/lint-test.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 45e56750e..8c468f189 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,9 @@ and can [connect to almost any LLM](https://aider.chat/docs/llms.html). - Edit files in your editor while chatting with aider, and it will always use the latest version. Pair program with AI. -- [Add images to the chat](https://aider.chat/docs/images-urls.html) (GPT-4o, Claude 3.5 Sonnet, etc). -- [Add URLs to the chat](https://aider.chat/docs/images-urls.html) and aider will read their content. -- [Code with your voice](https://aider.chat/docs/voice.html). +- [Add images to the chat](https://aider.chat/docs/usage/images-urls.html) (GPT-4o, Claude 3.5 Sonnet, etc). +- [Add URLs to the chat](https://aider.chat/docs/usage/images-urls.html) and aider will read their content. +- [Code with your voice](https://aider.chat/docs/usage/voice.html). ## Top tier performance diff --git a/aider/website/docs/usage/lint-test.md b/aider/website/docs/usage/lint-test.md index 7d4b0e114..1e628d7e9 100644 --- a/aider/website/docs/usage/lint-test.md +++ b/aider/website/docs/usage/lint-test.md @@ -17,7 +17,7 @@ Aider comes with built in linters for [most popular languages](/docs/languages.html) and will automatically lint code in these languages. -Or you can specify you favorite linter +Or you can specify your favorite linter with the `--lint-cmd ` switch. The lint command should accept the filenames of the files to lint. @@ -54,6 +54,6 @@ To do this, provide a `--test-cmd` which both builds and tests the project. You could create a small shell script for this. Or you may be able to do something as simple as -`--test-cmd dotnet build && dotnet test`. +`--test-cmd dotnet "build && dotnet test"`.