I would like to have my FIR checkers run and give user feedback (errors, warnings) when I modify a non-Kotlin file in the project.
Is this possible somehow? The file is actually used in the code and the compiler plugin performs actions based on the file content. It is possible that the code and the file content does not match, in this case I would like to show the error to the user.
Also, I would like to build a kind of a registry based on the code (functions, classes annotated with a specific annotation). What would be the best approach? My last information was that incremental compilation makes it hard to do this well.