Skip to content

Commit

Permalink
fix: adding missing eslint plugin imports in the react and test configs
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Apr 6, 2020
1 parent 5306f99 commit 73bf2c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions react.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
extends: ['plugin:jsx-a11y/recommended', 'plugin:react/recommended'],
plugins: ['jsx-a11y', 'react'],
env: {
browser: true,
},
Expand Down
2 changes: 1 addition & 1 deletion testing.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: ['plugin:jest/recommended', 'plugin:jest/style', 'plugin:jest-formatting/recommended'],
plugins: ['jest'],
plugins: ['import', 'jest', 'node', 'sonarjs'],
env: {
'jest/globals': true,
},
Expand Down

0 comments on commit 73bf2c2

Please sign in to comment.