This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-doxia.git
The following commit(s) were added to refs/heads/master by this push: new 4eda5adb Clarify that it's OK to use spaces for things other than indentation (#148) 4eda5adb is described below commit 4eda5adb3c9010131ac1f9118d8ed6c262883762 Author: Elliotte Rusty Harold <elh...@users.noreply.github.com> AuthorDate: Sat Jan 27 09:25:06 2024 -0500 Clarify that it's OK to use spaces for things other than indentation (#148) Indeed, it's necessary, --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fc605a1..2468d744 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ There are some guidelines which will make applying PRs easier for us: + Make commits of logical units. + Respect the original code style: by using the same [codestyle][code-style], patches should only highlight the actual difference, not being disturbed by any formatting issues: - + Only use spaces for indentation. + + Use spaces for indentation, not tabs. + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted, create a separate PR for this change. + Check for unnecessary whitespace with `git diff --check` before committing.