File tree 4 files changed +13
-2
lines changed
4 files changed +13
-2
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <inspections name =" Square" >
3
+ <inspection_tool class =" UnnecessarySemicolon" enabled =" true" level =" ERROR" enabled_by_default =" true" />
4
+ </inspections >
5
+
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Installs Square's IntelliJ configs into your user configs.
3
3
4
- echo " Installing Square code style configs..."
4
+ echo " Installing Square IntelliJ configs..."
5
5
6
6
CONFIGS=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) /configs"
7
7
@@ -13,8 +13,14 @@ for i in $HOME/Library/Preferences/IntelliJIdea* \
13
13
$HOME /.AndroidStudio* /config
14
14
do
15
15
if [ -d $i ]; then
16
+
17
+ # Install codestyles
16
18
mkdir -p $i /codestyles
17
- cp -frv " $CONFIGS " /* $i /codestyles
19
+ cp -frv " $CONFIGS /codestyles" /* $i /codestyles
20
+
21
+ # Install inspections
22
+ mkdir -p $i /inspection
23
+ cp -frv " $CONFIGS /inspection" /* $i /inspection
18
24
fi
19
25
done
20
26
You can’t perform that action at this time.
0 commit comments