We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61bee90 commit 3c63890Copy full SHA for 3c63890
.github/workflows/vint.yml
@@ -0,0 +1,22 @@
1
+name: Vint
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ vint:
7
+ strategy:
8
+ fail-fast: false
9
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@master
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v1
17
+ with:
18
+ python-version: 3.7
19
+ - name: Setup dependencies
20
+ run: pip install vim-vint
21
+ - name: Run Vimscript Linter
22
+ run: vint .
.vintrc.yaml
@@ -0,0 +1,5 @@
+cmdargs:
+ severity: style_problem
+ color: true
+ env:
+ neovim: false
0 commit comments