Skip to content

Commit a80d637

Browse files
committed
Refine FAQ
1 parent 6170181 commit a80d637

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/code-howtos/faq.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ Execute the Gradle task `rewriteRun` from the `rewrite` group of the Gradle Tool
1818

1919
Background: [OpenRewrite](https://docs.openrewrite.org/) is an automated refactoring ecosystem for source code.
2020

21+
### Failing Google Java Format (AOSP) tests
22+
23+
Please ensure that you setup and configured the Google Java Format IntelliJ plugin correctly.
24+
25+
On Windows, to fix using the CLI, you can run the following command in the root directory of the project:
26+
27+
```bash
28+
find . -name "*.java" -exec /c/Users/{username}/Downloads/google-java-format_windows-x86-64.exe -r -a --skip-reflowing-long-strings --skip-javadoc-formatting "{}" \;
29+
```
30+
2131
### `org.jabref.logic.l10n.LocalizationConsistencyTest findMissingLocalizationKeys` <span style="color:red">FAILED</span>
2232

2333
You have probably used Strings that are visible on the UI (to the user) but not wrapped them using `Localization.lang(...)` and added them to the [localization properties file](https://github.com/JabRef/jabref/blob/main/src/main/resources/l10n/JabRef_en.properties).

0 commit comments

Comments
 (0)