From 75ab45106f569f58038c5241d1aee6717c720ba1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 18 Jun 2020 11:21:47 +0400 Subject: Added react configs Signed-off-by: Valentin Popov --- src/react-typescript.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/react-typescript.ts (limited to 'src') diff --git a/src/react-typescript.ts b/src/react-typescript.ts new file mode 100644 index 0000000..a63614e --- /dev/null +++ b/src/react-typescript.ts @@ -0,0 +1,27 @@ +import rJsxA11y from "./rules/jsx-a11y/default.json"; +import rReactHooks from "./rules/react-hooks/default.json"; +import rDefault from "./rules/react/default.json"; + +module.exports = { + "extends": [ + "./typescript", + "plugin:jsx-a11y/recommended", + "plugin:react-hooks/recommended", + "plugin:react/recommended", + ], + "parserOptions": { + ecmaFeatures: { + jsx: true, + }, + }, + "plugins": [ + "jsx-a11y", + "react", + "react-hooks", + ], + "rules": { + ...rDefault, + ...rJsxA11y, + ...rReactHooks, + }, +}; -- cgit v1.2.3