We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5d077 commit 0a7355aCopy full SHA for 0a7355a
.eslintrc.js
@@ -12,7 +12,9 @@ module.exports = {
12
'no-console': 'off',
13
// airbnb config forbids optionalDependencies
14
// https://github.com/airbnb/javascript/blob/c5bee75b1b358a3749f1a6d38ee6fad73de28e29/packages/eslint-config-airbnb-base/rules/imports.js#L95
15
- "import/no-extraneous-dependencies": [ "error", { "optionalDependencies": true }]
+ "import/no-extraneous-dependencies": [ "error", { "optionalDependencies": true }],
16
+ // Project uses opt deps like odbc and idb-connector which may not exist
17
+ "import/no-unresolved": 'off',
18
},
19
overrides: [
20
{
0 commit comments