fetch-php/pint.json
2024-10-19 03:35:31 +01:00

46 lines
1.3 KiB
JSON

{
"preset": "laravel",
"rules": {
"no_unused_imports": true,
"array_indentation": true,
"declare_strict_types": true,
"array_syntax": {
"syntax": "short"
},
"blank_line_before_statement": {
"statements": [
"break",
"declare",
"return",
"throw",
"try",
"while",
"for",
"if",
"continue",
"foreach"
]
},
"braces": {
"allow_single_line_anonymous_class_with_empty_body": false,
"allow_single_line_closure": false,
"position_after_anonymous_constructs": "same",
"position_after_control_structures": "same",
"position_after_functions_and_oop_constructs": "next"
},
"cast_spaces": false,
"concat_space": {
"spacing": "one"
},
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal"
}
},
"ordered_imports": {
"sort_algorithm": "alpha"
},
"nullable_type_declaration_for_default_null_value": false
}
}