You've already forked Epicnabbo-Catalogus-Updated-Daily
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"preset": "laravel",
|
|
"rules": {
|
|
"simplified_null_return": true,
|
|
"braces_position": {
|
|
"control_structures_opening_brace": "same_line",
|
|
"functions_opening_brace": "next_line_unless_newline_at_signature_end",
|
|
"anonymous_functions_opening_brace": "same_line",
|
|
"classes_opening_brace": "next_line_unless_newline_at_signature_end",
|
|
"anonymous_classes_opening_brace": "next_line_unless_newline_at_signature_end",
|
|
"allow_single_line_empty_anonymous_classes": false,
|
|
"allow_single_line_anonymous_functions": false
|
|
},
|
|
"concat_space": {
|
|
"spacing": "one"
|
|
},
|
|
"method_chaining_indentation": true,
|
|
"multiline_whitespace_before_semicolons": {
|
|
"strategy": "no_multi_line"
|
|
},
|
|
"single_line_after_imports": true,
|
|
"no_unused_imports": true,
|
|
"ordered_imports": {
|
|
"sort_algorithm": "alpha",
|
|
"imports_order": ["const", "class", "function"]
|
|
},
|
|
"no_superfluous_phpdoc_tags": {
|
|
"allow_mixed": true,
|
|
"allow_unused_params": false,
|
|
"remove_inheritdoc": false
|
|
},
|
|
"phpdoc_order": true,
|
|
"phpdoc_separation": true,
|
|
"phpdoc_trim": true,
|
|
"return_type_declaration": {
|
|
"space_before": "none"
|
|
},
|
|
"trailing_comma_in_multiline": {
|
|
"elements": ["arrays", "arguments", "parameters"]
|
|
},
|
|
"visibility_required": {
|
|
"elements": ["property", "method", "const"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"bootstrap/cache",
|
|
"storage",
|
|
"vendor",
|
|
"node_modules"
|
|
]
|
|
} |