From aa5c1f7c7e713bf07c89c993205cd3b1847437fe Mon Sep 17 00:00:00 2001 From: Basix Date: Wed, 22 Jan 2020 01:01:09 +0900 Subject: [PATCH] Use other ESLint plugins --- .eslintrc.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 82f002f..c0d894c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,10 +1,13 @@ { "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint"], + "plugins": ["@typescript-eslint", "react", "react-hooks", "prettier"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended" + "plugin:@typescript-eslint/recommended", + "plugin:react/recommended", + "airbnb", + "prettier" ], "env": { "browser": true,