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
17 changes: 17 additions & 0 deletions .claude/guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# AI Guidelines for Speedtest Tracker

## Code Style

### Laravel Pint

Always run `./vendor/bin/pint --dirty` after making any code changes to ensure code style consistency. This command formats only the files that have been modified according to the project's PHP coding standards.

**Usage:**
```bash
./vendor/bin/pint --dirty
```

This should be run before:
- Creating commits
- Opening pull requests
- Marking tasks as complete
4 changes: 2 additions & 2 deletions config/speedtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
/**
* General settings.
*/
'build_date' => Carbon::parse('2025-10-24'),
'build_date' => Carbon::parse('2025-10-31'),

'build_version' => 'v1.6.9',
'build_version' => 'v1.6.10',

'content_width' => env('CONTENT_WIDTH', '7xl'),

Expand Down