chore: add Pint configuration and refactor code style

- Introduced a new Pint configuration file for code style enforcement with specific rules and exclusions.
- Refactored code in various files to adhere to the new style guidelines, including adjustments to spacing in conditional statements.

These changes enhance code consistency and maintainability across the project.
This commit is contained in:
Yury Pikhtarev 2025-06-24 02:00:20 +04:00
commit 2113395b53
No known key found for this signature in database
4 changed files with 14 additions and 4 deletions

10
pint.json Normal file
View file

@ -0,0 +1,10 @@
{
"preset": "laravel",
"rules": {
"concat_space": false,
"not_operator_with_successor_space": false
},
"exclude": [
"legacy"
]
}