Skip to content

Commit 0cac992

Browse files
committed
reverts guidelines chcanges
1 parent c471401 commit 0cac992

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

.ai/inertia-react/2/forms.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
## Inertia + React Forms
2-
31
@php
42
/** @var \Laravel\Boost\Install\GuidelineAssist $assist */
53
@endphp
4+
## Inertia + React Forms
65

76
@if($assist->inertia()->hasFormComponent())
87
@boostsnippet("`<Form>` Component Example", "react")

.ai/inertia-svelte/2/forms.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
## Inertia + Svelte Forms
2-
31
@php
42
/** @var \Laravel\Boost\Install\GuidelineAssist $assist */
53
@endphp
4+
## Inertia + Svelte Forms
65

76
- There are critical differences between Svelte 4 and 5, use the `search-docs` tool for up-to-date guidance.
87

.ai/laravel/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Laravel
1+
## Do Things the Laravel Way
22

33
- Use `php artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.). You can list available Artisan commands using the `list-artisan-commands` tool.
44
- If you're creating a generic PHP class, use `artisan make:class`.

.ai/livewire/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Livewire
1+
## Livewire Core
22
- Use the `search-docs` tool to find exact version specific documentation for how to write Livewire & Livewire tests.
33
- Use the `php artisan make:livewire [Posts\\CreatePost]` artisan command to create new components
44
- State should live on the server, with the UI reflecting it.

.ai/phpunit/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## PHPUnit
1+
## PHPUnit Core
22

33
- This application uses PHPUnit for testing. All tests must be written as PHPUnit classes. Use `php artisan make:test --phpunit <name>` to create a new test.
44
- If you see a test using "Pest", convert it to PHPUnit.

.ai/pint/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Laravel Pint
1+
## Laravel Pint Code Formatter
22

33
- You must run `vendor/bin/pint --dirty` before finalizing changes to ensure your code matches the project's expected style.
44
- Do not run `vendor/bin/pint --test`, simply run `vendor/bin/pint` to fix any formatting issues.

.ai/tailwindcss/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Tailwind
1+
## Tailwind Core
22

33
- Use Tailwind CSS classes to style HTML, check and use existing tailwind conventions within the project before writing your own.
44
- Offer to extract repeated patterns into components that match the project's conventions (i.e. Blade, JSX, Vue, etc..)

0 commit comments

Comments
 (0)