Skip to content

Commit 50b0a2b

Browse files
committed
Fix "jsx-a11y/href-no-hash" ESLint warnings
The rule does not exist in `jsx-a11y` anymore, but is referred to in `eslint-config-react-app`.
1 parent 5f6ba2e commit 50b0a2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": ["eslint:recommended", "react-app", "plugin:jsx-a11y/recommended"],
33
"plugins": ["jsx-a11y"],
44
"rules": {
5-
"no-console": [0]
5+
"no-console": [0],
6+
"jsx-a11y/href-no-hash": [0]
67
}
78
}

0 commit comments

Comments
 (0)