You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pint.json 602B

123456789101112131415161718192021
  1. {
  2. "preset": "laravel",
  3. "rules": {
  4. "blank_line_before_statement": true,
  5. "concat_space": {
  6. "spacing": "one"
  7. },
  8. "group_import": true,
  9. "method_argument_space": true,
  10. "multiline_comment_opening_closing": true,
  11. "no_unused_imports": true,
  12. "nullable_type_declaration_for_default_null_value": {
  13. "use_nullable_type_declaration": true
  14. },
  15. "single_import_per_statement": false,
  16. "single_trait_insert_per_statement": true,
  17. "types_spaces": {
  18. "space": "single"
  19. }
  20. }
  21. }