Skip to content

Commit fb59419

Browse files
committed
sets browser env in react config
1 parent 82d3f9c commit fb59419

File tree

4 files changed

+14
-26
lines changed

4 files changed

+14
-26
lines changed

configs/react/index.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
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+
},
215
extends: [
3-
'./rules/react',
416
'./rules/react-a11y',
517
'./rules/react-hooks',
18+
'./rules/react',
619
].map(require.resolve),
720
rules: {},
821
};

configs/react/rules/react-a11y.js

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
module.exports = {
2-
plugins: [
3-
'jsx-a11y',
4-
'react',
5-
],
6-
parserOptions: {
7-
ecmaFeatures: {
8-
jsx: true,
9-
},
10-
},
112
rules: {
123
// Enforce that anchors have content
134
// https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md

configs/react/rules/react-hooks.js

-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
module.exports = {
2-
plugins: [
3-
'react-hooks',
4-
],
5-
parserOptions: {
6-
ecmaFeatures: {
7-
jsx: true,
8-
},
9-
},
102
rules: {
113
// Enforce Rules of Hooks
124
// https://github.com/facebook/react/blob/c11015ff4f610ac2924d1fc6d569a17657a404fd/packages/eslint-plugin-react-hooks/src/RulesOfHooks.js

configs/react/rules/react.js

-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
module.exports = {
2-
plugins: [
3-
'react',
4-
],
5-
parserOptions: {
6-
ecmaFeatures: {
7-
jsx: true,
8-
},
9-
},
102
rules: {
113
// View link below for react rules documentation
124
// https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules

0 commit comments

Comments
 (0)