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
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ This document provides directive guidelines for AI assistants working on the YUP

## Code Generation Rules

**NEVER EVER run bash commands to configure, compile or test the implementation, acknowledge that we should test and we'll run and report any issue.**

### 1. File Headers
**ALWAYS** start new files with this exact header:

Expand Down Expand Up @@ -296,8 +298,6 @@ TEST (ClassNameTests, StaticMethodBehavesCorrectly)
4. **Group related tests** in test fixtures
5. **Keep tests independent** and deterministic
6. **Never Use C or C++ macros (like M_PI)** use yup alternatives
7. **EXCLUSIVELY use `just test`** to compile and execute tests
8. **NEVER start compilation or tests** unless told explicitly

### When suggesting refactoring:
1. **Maintain existing API contracts**
Expand Down
2 changes: 1 addition & 1 deletion docs/Building Plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public:

void paint (yup::Graphics& g) override
{
g.fillAll (getLookAndFeel().findColour (yup::ResizableWindow::backgroundColourId));
g.fillAll (findColour (yup::ResizableWindow::backgroundColourId));
}

private:
Expand Down
Loading
Loading