Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions configs/options/editor.codeinsight.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<application>
<component name="CodeInsightSettings">
<EXCLUDED_PACKAGE NAME="autovalue.shaded" />
<EXCLUDED_PACKAGE NAME="avro.shaded" />
<EXCLUDED_PACKAGE NAME="com.beust.jcommander.internal" />
<EXCLUDED_PACKAGE NAME="com.sun.istack" />
<EXCLUDED_PACKAGE NAME="jline.internal" />
<EXCLUDED_PACKAGE NAME="joptsimple.internal" />
<EXCLUDED_PACKAGE NAME="junit.framework.Assert" />
<EXCLUDED_PACKAGE NAME="org.assertj.core.util" />
<EXCLUDED_PACKAGE NAME="org.flywaydb.core.internal.util" />
<EXCLUDED_PACKAGE NAME="org.hibernate.validator.internal" />
<EXCLUDED_PACKAGE NAME="org.mockito.internal.util.collections" />
<EXCLUDED_PACKAGE NAME="org.mockito.internal.verification.VerificationModeFactory" />
<EXCLUDED_PACKAGE NAME="junit.framework.Assert" />
</component>
</application>
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ do
# Install inspections
mkdir -p $i/inspection
cp -frv "$CONFIGS/inspection"/* $i/inspection

# Install options ("Exclude from Import and Completion")
mkdir -p $i/options
cp -frv "$CONFIGS/options"/* $i/options
fi
done

Expand Down