mirror of https://github.com/hasinhayder/hydra
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.
27 lines
983 B
27 lines
983 B
{
|
|
"preset": "laravel",
|
|
"rules": {
|
|
"simplified_null_return": true,
|
|
"braces": {
|
|
"allow_single_line_anonymous_class_with_empty_body": true,
|
|
"allow_single_line_closure": true,
|
|
"position_after_control_structures": "same",
|
|
"position_after_functions_and_oop_constructs": "same",
|
|
"position_after_anonymous_constructs": "same"
|
|
},
|
|
"curly_braces_position": {
|
|
"control_structures_opening_brace": "same_line",
|
|
"functions_opening_brace": "same_line",
|
|
"anonymous_functions_opening_brace": "same_line",
|
|
"classes_opening_brace": "same_line",
|
|
"anonymous_classes_opening_brace": "same_line",
|
|
"allow_single_line_empty_anonymous_classes": true,
|
|
"allow_single_line_anonymous_functions": true
|
|
},
|
|
"new_with_braces": {
|
|
"anonymous_class": false,
|
|
"named_class": false
|
|
}
|
|
}
|
|
}
|