LoginSignup
0
0

More than 5 years have passed since last update.

tslint-reactの一部のみのrule、jsx-keyだけ使いたかった

Last updated at Posted at 2019-01-24

tslint-reactをextendsで全ルール適用する方法は簡単に見つかるけど、一部を使う方法がすぐに見つからなかった。

{
  "rulesDirectory": [
    //x "tslint-react",
    "tslint-react/rules", //ok
    "tslint-plugin-prettier"
  ],
  "rules": [
    "jsx-key": true
  ]

node_modules内のこれを見て気づいた
https://github.com/palantir/tslint-react/blob/master/tslint-react.json

0
0
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
0
0