From db58f9fcebb9963eab85b347a9502fbd80b1942e Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Mon, 4 Apr 2022 22:49:06 +0200 Subject: [PATCH] [docs] Add Java style guide Signed-off-by: Arnaud Vergnet --- docs/CONTRIBUTING.md | 1 + docs/JAVA_STYLE.md | 11 +++++++++++ docs/PR_GUIDE.md | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docs/JAVA_STYLE.md diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 70ce708fbd..2ad5917c65 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -83,6 +83,7 @@ The OM community abides by the [CNCF code of conduct](CODE_OF_CONDUCT.md). - [Directories structure](STRUCTURE.md) - [C++ Style Guide](CPP_STYLE.md). +- [Java Style Guide](JAVA_STYLE.md). - [Objective-C Style Guide](OBJC_STYLE.md). - [Pull Request Guide](PR_GUIDE.md). - [How to write a commit message](COMMIT_MESSAGES.md). diff --git a/docs/JAVA_STYLE.md b/docs/JAVA_STYLE.md new file mode 100644 index 0000000000..dba0760a34 --- /dev/null +++ b/docs/JAVA_STYLE.md @@ -0,0 +1,11 @@ +# Java Style Guide + +The Android app follows the style defined in `android/code_style_scheme.xml`. Code not respecting this style will not be accepted and you will be asked by reviewers to edit your PR. + +## Importing the style in Android Studio + +You can import this configuration file in Android Studio to allow automatically formatting Java files. When Android Studio is open, go to `File -> Settings` then open the section `Editor -> Code Style -> Java`. Here click on the gear icon next to the dropdown at the top of the page and select `Import Scheme...`. Select `android/code_style_scheme.xml` and press `OK` in the next dialog. + +## Formatting a file + +Before making a commit, please reformat your files using `Code -> Reformat File`. In the opening dialog, select the scope `Only VCS changed text` and tick all the optional checkbox (optimize imports, rearrange code and code cleanup). diff --git a/docs/PR_GUIDE.md b/docs/PR_GUIDE.md index 86965f7138..300c8be2a1 100644 --- a/docs/PR_GUIDE.md +++ b/docs/PR_GUIDE.md @@ -25,7 +25,7 @@ - Comments in PR should be not only about things which are worth redeveloping but about good designs as well - It's better to ask the developer to make code simpler or add comments to the code base than to understand the code through the developer's explanation - It's worth writing comments in PR which help the PR author to learn something new -- All code base should conform to ./docs/CPP_STYLE.md, ./docs/OBJC_STYLE.md or other style in ./docs/ depending on the language +- All code base should conform to ./docs/CPP_STYLE.md, ./docs/OBJC_STYLE.md, ./docs/JAVA_STYLE.md or other style in ./docs/ depending on the language - Code review should be started as quick as possible after a PR is published. A reviewer should answer developer comments as quick as possible - If a PR looks good to a reviewer they should approve this PR. It means the review is finished - If a developer changes the PR significantly, the reviewers who have already approved the PR should be informed about these changes