Skip to content

Commit

Permalink
Add ignore to lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
dguenther committed Aug 14, 2024
1 parent 42106a4 commit 9ec7dd6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/mobile-app/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
extends: ["expo", "prettier"],
plugins: ["prettier"],
rules: {
// This rule fails if @ironfish/ui hasn't been built yet, so we can disable it
// specifically for that package.
"import/no-unresolved": ["error", { ignore: ["^@ironfish/ui"] }],
"prettier/prettier": "error",
},
};

0 comments on commit 9ec7dd6

Please sign in to comment.