LoginSignup
2
1

More than 5 years have passed since last update.

Flycheck の設定をディレクトリによって変える方法

Last updated at Posted at 2015-12-10

対象ディレクトリに .dir-locals.el ファイルを置く。↓は JSHintJSCS チェックを無効にする例。

((js-mode (flycheck-disabled-checkers javascript-jshint javascript-jscs)))

ファイルを直接編集するだけでなく、Emacs関数を使っても追加できる。

M-x add-dir-local-variable RET js-mode RET flycheck-disabled-checkers RET javascript-jshint RET

参考:
- Flycheck公式マニュアル
- Emacs公式マニュアル
- Directory Variables - EmacsWiki

2
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
2
1