Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

ALEを使ったコードチェック

$
0
0

目的

Vim上でコーディングルールのチェックをする。
今回はALEを使ってPSR-1,2に準拠しているかのチェックをおこないます。

環境

Custom Version 8.0.1420 (KaoriYa 20171221)
PHP 7.0.17

ALE(Asynchronous Lint Engine)

https://github.com/w0rp/ale

Install

ALEをインストールします。NeoBundleを使ってます。

.vimrc
NeoBundle 'w0rp/ale'

:NeoBundleInstallを実行

Settings

.vimrc
" phpcsのみ使用する
let g:ale_linters = {
      \ 'php': ['phpcs']
      \}

" PSR-1,2のチェックをおこなう
let g:ale_php_phpcs_standard = 'PSR1,PSR2'

これだけで完了かんたーん!


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>