We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03e44f4 commit 4e5224bCopy full SHA for 4e5224b
.travis.yml
@@ -1,6 +1,10 @@
1
-language: vim
+language: python
2
before_install: |
3
sudo apt-get -qq update
4
sudo apt-get -y install vim
5
+install:
6
+ pip install vim-vint==0.3.14
7
+cache: pip
8
script:
9
+ - make lint
10
- make test
Makefile
@@ -1,6 +1,9 @@
.PHONY: test
-all: test
+all: lint test
+
+lint:
+ vint -s after ftdetect ftplugin indent plugin syntax
test: test/vader.vim test/vim-javascript
cd test && vim -Nu vimrc -c 'Vader! *' > /dev/null
0 commit comments