This commit is contained in:
Paul Gauthier 2024-07-07 07:32:57 -03:00
parent 2f5d3b4e00
commit e8c8b5cb4a
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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 <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"`.