I’m using task inputs/ouputs to track down changes in a specific folder. The folder however hosts an .idea folder (used by Intelij IDE). The IDE modifies the files based on your actions inside the IDE. Those are being excluded using .gitignore, but I was wondering if I can do the same things with Gradle.
For example, when creating a new local IDE profile, a file in the .idea folder is being changed. I do not want this change to trigger a new build.Can I exclude the whole .idea folder?
Thanks!