LoginSignup
1
2

More than 3 years have passed since last update.

Gatsby・VSCodeなプロジェクトにeslintするにはこのへんだけ見ればいけます

Last updated at Posted at 2019-02-28

導入

yarn add eslint eslint-loader

参照; https://www.gatsbyjs.org/packages/gatsby-plugin-eslint/

で内容の確認

Screen Shot 2019-03-01 at 3.03.59.png

ほんでこの設定すると、ファイル保存時にLint設定を元にソースをいい感じにしてくれる。精神衛生上よい。

わたしの設定

{
  "extends": "airbnb",
  "rules": {
    "array-callback-return": 0,
    "react/no-unused-state": 1,
    "no-unused-vars": 0,
    "react/jsx-filename-extension": 0
  }
}

以上

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