AlexHaxe
AlexHaxe
Sad news indeed. We never had the chance to meet in real life, but I enjoyed working with him and I will miss him. 38 is much too soon. Thanks...
It's probably easy to find all String constants, but using string interpolation might not make sense in all cases. e.g. when splitting strings over multiple lines for formatting or when...
How about writing a generic `WhitespaceCheck`, that has four modes: `NoWhitespace`, `OnlyBefore`, `OnlyAfter` and `WhitespaceAround`. It also has a list of tokens like in `WhitespaceAround` and a scope / context...
Maybe we can keep them (marked as deprecated), but refactor them to use new whitespace check with matching parameters, so they are like dumbed down versions of the full check.
I just had the same problem when using vscode-checkstyle on a file with a comment that contained an umlaut. The same file runs fine on Neko and C++ builds of...
I changed `content` from `String` to `Bytes`, so now positions should be correct. At least my tests in vscode showed no more checkstyle issues with lines containing umlaut or other...
~~hmmm... it works on Linux, but not on Windows~~ edit: it works on Windows, I had my haxelib setup mixed up, so vscode-checkstyle was using release version 2.2.1 instead of...
I haven't really checked, but I also haven't seen any issues with vscode-checkstyle, is it still broken?
It could act as an anonymous function style check, where it enforces either short lambdas or anonymous functions. For short lambdas it could make exceptions to allow anon functions when...
well, a checkstyle violation is as good as forbidding something, because the only way to get rid of it is either to suppress it, or to fix your code to...