Skip to content

Commit

Permalink
feat: reorder deps
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticShadow committed Dec 13, 2022
1 parent c9c4cd3 commit 2f6b400
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/browser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
// The Configs that we have chosen to extend
extends: ["./index.mjs", "plugin:react/recommended"],
extends: ["./index", "plugin:react/recommended"],
env: {
browser: true,
},
Expand Down
2 changes: 1 addition & 1 deletion src/react-native.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: ["./index", "@react-native-community"],
extends: ["@react-native-community", "./index"],
};

0 comments on commit 2f6b400

Please sign in to comment.