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

This commit is contained in:
Devin Haska 2025-05-27 12:22:40 -07:00
parent cd66c8aa73
commit b17285c0e0
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
}
}