From 9aa9aaf3599d291507576ba9af99665486fdf157 Mon Sep 17 00:00:00 2001 From: Marcin Gil Date: Tue, 15 Apr 2025 14:22:01 +0200 Subject: [PATCH 1/2] .editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..cd8eb86efad --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false From 44e03f6cdaf95b88f80b0469cd9f18a57bfb3740 Mon Sep 17 00:00:00 2001 From: Maciej Holyszko <14310995+falkenhawk@users.noreply.github.com> Date: Thu, 2 Apr 2026 12:49:35 +0200 Subject: [PATCH 2/2] editorconfig: remove whitespace config for more info see https://github.com/zf1s/phpunit/pull/23#pullrequestreview-4048742636 --- .editorconfig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index cd8eb86efad..48b37c0bedf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,8 +8,3 @@ charset = utf-8 indent_size = 4 indent_style = space end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[*.md] -trim_trailing_whitespace = false