feat: add pint and php-cs-fixer global configs

This commit is contained in:
Devin Haska 2025-03-12 14:32:23 -07:00
parent 3b5e6dc1be
commit 53ce553bbf
2 changed files with 40 additions and 0 deletions

15
.config/pint/pint.json Normal file
View file

@ -0,0 +1,15 @@
{
"preset": "laravel",
"rules": {
"braces_position": {
"anonymous_classes_opening_brace": "same_line",
"anonymous_functions_opening_brace": "same_line",
"classes_opening_brace": "same_line",
"control_structures_opening_brace": "same_line",
"functions_opening_brace": "same_line"
},
"no_leading_import_slash": false,
"not_operator_with_space": false,
"not_operator_with_successor_space": false
}
}