File tree 4 files changed +14
-26
lines changed
4 files changed +14
-26
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
+ env : {
3
+ browser : true ,
4
+ } ,
5
+ plugins : [
6
+ 'jsx-a11y' ,
7
+ 'react-hooks' ,
8
+ 'react' ,
9
+ ] ,
10
+ parserOptions : {
11
+ ecmaFeatures : {
12
+ jsx : true ,
13
+ } ,
14
+ } ,
2
15
extends : [
3
- './rules/react' ,
4
16
'./rules/react-a11y' ,
5
17
'./rules/react-hooks' ,
18
+ './rules/react' ,
6
19
] . map ( require . resolve ) ,
7
20
rules : { } ,
8
21
} ;
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- plugins : [
3
- 'jsx-a11y' ,
4
- 'react' ,
5
- ] ,
6
- parserOptions : {
7
- ecmaFeatures : {
8
- jsx : true ,
9
- } ,
10
- } ,
11
2
rules : {
12
3
// Enforce that anchors have content
13
4
// https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- plugins : [
3
- 'react-hooks' ,
4
- ] ,
5
- parserOptions : {
6
- ecmaFeatures : {
7
- jsx : true ,
8
- } ,
9
- } ,
10
2
rules : {
11
3
// Enforce Rules of Hooks
12
4
// https://github.com/facebook/react/blob/c11015ff4f610ac2924d1fc6d569a17657a404fd/packages/eslint-plugin-react-hooks/src/RulesOfHooks.js
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- plugins : [
3
- 'react' ,
4
- ] ,
5
- parserOptions : {
6
- ecmaFeatures : {
7
- jsx : true ,
8
- } ,
9
- } ,
10
2
rules : {
11
3
// View link below for react rules documentation
12
4
// https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules
You can’t perform that action at this time.
0 commit comments