123456789101112131415161718192021 |
- {
- "preset": "laravel",
- "rules": {
- "blank_line_before_statement": true,
- "concat_space": {
- "spacing": "one"
- },
- "group_import": true,
- "method_argument_space": true,
- "multiline_comment_opening_closing": true,
- "no_unused_imports": true,
- "nullable_type_declaration_for_default_null_value": {
- "use_nullable_type_declaration": true
- },
- "single_import_per_statement": false,
- "single_trait_insert_per_statement": true,
- "types_spaces": {
- "space": "single"
- }
- }
- }
|