Somewhere in the process of setting up a Java project in IntelliJ IDEA (2017.1.2) a file in the .idea/ directory called kotlinc.xml showed up. I do nothing with Kotlin, but the file is there with contents:
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="KotlinCommonCompilerArguments">
<option name="languageVersion" value="1.1" />
<option name="apiVersion" value="1.1" />
</component>
</project>
This seems some generic configuration, but I can imagine some project-specific (and not just my-local-IDEA-specific) configuration of Kotlin is stored there. So, in general, can this file be ignored when sharing the project under version control (e.g. Git), i.e., not committing it and publishing it somewhere online? Or should it be ignored?