From aac0fb56670040a152ee24927cadd6d846f15574 Mon Sep 17 00:00:00 2001 From: Hasin Hayder Date: Sat, 25 Jun 2022 16:43:06 +0600 Subject: [PATCH] Laravel Pint Config - with K&R Style Braces --- pint.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pint.json diff --git a/pint.json b/pint.json new file mode 100644 index 0000000..4ab9f7d --- /dev/null +++ b/pint.json @@ -0,0 +1,13 @@ +{ + "preset": "laravel", + "rules": { + "simplified_null_return": true, + "braces": { + "position_after_functions_and_oop_constructs": "same" + }, + "new_with_braces": { + "anonymous_class": false, + "named_class": false + } + } +}