UNPKG

@jupri-lab/eslint-config-typescript-react

Version:

Curated eslint config for typescript react projects.

18 lines (17 loc) 328 B
module.exports = { extends: [ "@jupri-lab/typescript", "plugin:react/recommended", "plugin:react-hooks/recommended", ], rules: { "react/self-closing-comp": [ "error", { component: true, html: true, }, ], "react/react-in-jsx-scope": "off", }, };