| 123456789101112131415161718192021 |
- {
- "preset": "laravel",
- "exclude": [
- "routes",
- "app/Services/Pagarme",
- "database/migrations"
- ],
- "rules": {
- "binary_operator_spaces": {
- "default": "single_space",
- "operators": {
- "=>": "align_single_space_minimal",
- "=": "align_single_space_minimal"
- }
- },
- "ordered_imports": {
- "sort_algorithm": "alpha"
- },
- "no_unused_imports": true
- }
- }
|