@zetavg/eslint-config 0.0.8-pre.8 → 0.0.8-pre.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/configs/imports.js +8 -0
- package/package.json +3 -3
package/configs/imports.js
CHANGED
|
@@ -23,5 +23,13 @@ export default defineConfig([
|
|
|
23
23
|
'import/enforce-node-protocol-usage': 'warn',
|
|
24
24
|
'import/no-unresolved': 'off', // This sometimes cannot resolve paths correctly, providing false alerts.
|
|
25
25
|
},
|
|
26
|
+
settings: {
|
|
27
|
+
'import/ignore': [
|
|
28
|
+
// `eslint-plugin-import` inspects imported packages to validate exports.
|
|
29
|
+
// React Native's entry file uses Flow-only syntax, so we skip import
|
|
30
|
+
// analysis for that package.
|
|
31
|
+
'node_modules/react-native/',
|
|
32
|
+
],
|
|
33
|
+
},
|
|
26
34
|
},
|
|
27
35
|
]);
|
package/package.json
CHANGED
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"typescript-eslint": "^8"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@zetavg/prettier-config": "^0.0.8-pre.
|
|
68
|
-
"@zetavg/tsconfig": "^0.0.8-pre.
|
|
67
|
+
"@zetavg/prettier-config": "^0.0.8-pre.9",
|
|
68
|
+
"@zetavg/tsconfig": "^0.0.8-pre.9",
|
|
69
69
|
"eslint": "^9",
|
|
70
70
|
"prettier": "^3",
|
|
71
71
|
"typescript": "~5.8"
|
|
72
72
|
},
|
|
73
|
-
"version": "0.0.8-pre.
|
|
73
|
+
"version": "0.0.8-pre.9"
|
|
74
74
|
}
|