LoginSignup
5
1

More than 5 years have passed since last update.

Vim Ale で Docker 内のコマンド実行

Last updated at Posted at 2018-07-20

Lint 用のコマンド (ここでは flake8) の実行パスが設定できるので、そこに登録してあげれば良い

~/.vimrc
let g:ale_python_flake8_executable = 'bin/flake8'
bin/flake8
#!/bin/bash

docker-compose exec web flake8 $@

Virtualenv の場合も、これで行ける気が

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1