File tree 3 files changed +17
-11
lines changed
3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1
1
sudo : required
2
2
dist : trusty
3
3
4
- before_install :
5
- - sudo apt-get install shellcheck python vim
6
- - pip install --user vim-vint
7
-
8
- script :
9
- # - vint init.vim layers/*.vim core/*.vim
10
- - shellcheck *.sh
11
- - chmod +x install.sh
12
- - git clone https://github.com/hecal3/vim-leader-guide ~/.vim/plugged/vim-leader-guide --depth=1
13
- - ./install.sh
14
-
4
+ before_install : ci/before_install.sh
5
+ script : ci/script.sh
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ sudo add-apt-repository ppa:deadsnakes/ppa -y
4
+ sudo apt-get update
5
+ sudo apt-get install shellcheck python3.6 -y
6
+ sudo pip install vim-vint pathlib typing enum34
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ find . -name " *.vim" -type f | grep -v " cache.vim" | while read filename; do vint -e " $filename " ; done
6
+
7
+ shellcheck * .sh
8
+
9
+ ./install.sh
You can’t perform that action at this time.
0 commit comments