UNPKG
@jupri-lab/eslint-config-typescript-react
Version:
latest (0.1.1)
0.1.1
0.1.0
Curated eslint config for typescript react projects.
github.com/JupriLab/lint/
JupriLab/lint
@jupri-lab/eslint-config-typescript-react
/
index.js
18 lines
(17 loc)
•
328 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
, }, };