I’m trying to optimize by antivirus (i’m not allow...
# javascript
a
I’m trying to optimize by antivirus (i’m not allowed to turn it off), I run gradle multiplatform that has js & jvm targets. I have excluded the obvious file extensions from the realtime scanning but are there any other not so obvious gradle/kotlin file types that I could exclude. Here is my list so far
Copy code
java;class;kt;jar;xml;json;ini;config;properties;ts;js;yml;yaml;mf;md
g
Copy code
find . -type f -name '*.*' | sed 's|.*\.||' | sort -u
(source) I think this could help to know what's needed in your case.
👍 1