Skip to content

Commit

Permalink
Fixing linting
Browse files Browse the repository at this point in the history
This change disables eslint-plugin-import's import resolution check, which doesn't understand the 'npm:' prefix required by Observable.

Refs #31, c9d0f50, import-js/eslint-plugin-import#2717
  • Loading branch information
thewilkybarkid committed Jul 11, 2024
1 parent c9d0f50 commit 7e4e4dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
{
"files": ["./**/*.md/*.js"],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off"
}
}
],
Expand Down

0 comments on commit 7e4e4dd

Please sign in to comment.