Skip to content

Commit e9d206a

Browse files
committed
ci: run vint on Vim source
Fixes #111.
1 parent fa4eec0 commit e9d206a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- name: Installed Vim with checks
2424
env:
2525
- VIM_VERSION=installed
26-
- MAKE_TARGET="clean_compiled check checkpy js/test py/test test/node_position/test_position.out"
26+
- MAKE_TARGET="clean_compiled check checkpy checkvim js/test py/test test/node_position/test_position.out"
2727
- TEST_PROFILE=vim-profile-installed.txt
2828
- TEST_PYTHON=python3
2929

3030
install:
3131
- |
3232
if [ "$VIM_VERSION" = 'installed' ]; then
33-
pip install --user flake8
33+
pip install -q --user flake8 git+https://github.com/Kuniwak/vint
3434
else
3535
bash scripts/install-vim.sh
3636
export PATH=$HOME/vim/bin:$PATH

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ check: all
1919
checkpy: all
2020
flake8 py
2121

22+
checkvim: all
23+
vint autoload
24+
2225
test:
2326
test/run.sh
2427

0 commit comments

Comments
 (0)