pint.json 495 B

123456789101112131415161718192021
  1. {
  2. "preset": "laravel",
  3. "exclude": [
  4. "routes",
  5. "app/Services/Pagarme",
  6. "database/migrations"
  7. ],
  8. "rules": {
  9. "binary_operator_spaces": {
  10. "default": "single_space",
  11. "operators": {
  12. "=>": "align_single_space_minimal",
  13. "=": "align_single_space_minimal"
  14. }
  15. },
  16. "ordered_imports": {
  17. "sort_algorithm": "alpha"
  18. },
  19. "no_unused_imports": true
  20. }
  21. }