Markus Brenneis
Markus Brenneis
I can confirm that #3005 fixes the issue in our original project.
I think it is created when you change something in the configuration dialog of the GUI. The file looks like this: ``` #LanguageTool configuration (4.4/2018-12-27 10:19) #Thu Mar 14 19:51:53...
According to `java -jar languagetool-server.jar --help`, there is a `--config` parameter where you can specify a path to a configuration file.
We explicitly needed to check those files and have a local patch for checkstyle: ```patch diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.java b/src/main/java/com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.java index 193c3f2b5b..9086c906bf 100644 --- a/src/main/java/com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.java +++ b/src/main/java/com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.java @@ -131,6 +131,9 @@...