Skip to content

Commit 06aabce

Browse files
authored
Merge pull request square#35 from square/autoimport-exclude
Automatically configure Auto Import Exclude from Import and Completion list
2 parents bdeaa5f + de33186 commit 06aabce

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<application>
2+
<component name="CodeInsightSettings">
3+
<EXCLUDED_PACKAGE NAME="autovalue.shaded" />
4+
<EXCLUDED_PACKAGE NAME="avro.shaded" />
5+
<EXCLUDED_PACKAGE NAME="com.beust.jcommander.internal" />
6+
<EXCLUDED_PACKAGE NAME="com.sun.istack" />
7+
<EXCLUDED_PACKAGE NAME="jline.internal" />
8+
<EXCLUDED_PACKAGE NAME="joptsimple.internal" />
9+
<EXCLUDED_PACKAGE NAME="junit.framework.Assert" />
10+
<EXCLUDED_PACKAGE NAME="org.assertj.core.util" />
11+
<EXCLUDED_PACKAGE NAME="org.flywaydb.core.internal.util" />
12+
<EXCLUDED_PACKAGE NAME="org.hibernate.validator.internal" />
13+
<EXCLUDED_PACKAGE NAME="org.mockito.internal.util.collections" />
14+
<EXCLUDED_PACKAGE NAME="org.mockito.internal.verification.VerificationModeFactory" />
15+
<EXCLUDED_PACKAGE NAME="junit.framework.Assert" />
16+
</component>
17+
</application>

install.sh

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ do
2121
# Install inspections
2222
mkdir -p $i/inspection
2323
cp -frv "$CONFIGS/inspection"/* $i/inspection
24+
25+
# Install options ("Exclude from Import and Completion")
26+
mkdir -p $i/options
27+
cp -frv "$CONFIGS/options"/* $i/options
2428
fi
2529
done
2630

0 commit comments

Comments
 (0)