
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
eslint-import-resolver-lerna
Advanced tools
Resolver for Lerna-based projects for eslint-plugin-import
This resolver can be used together with eslint-plugin-import
package to help it find modules in your Lerna-based monorepo.
In general you might not even need this, since Lerna symlinks your monorepo packages into your node_modules directory where the resolver can pick it up using the standard Node.js resolution mechanism. You probably will need this if:
This will cause your src/packages directory to not have node_modules folder, thus causing the plugin to be unable to find your other packages using the standard built-in Node.js module resolution mechanism. That's where this resolver will help you.
This plugin will look in your packages directory and generate a list of all the package names (as defined in their package.json files) that the monorepo contains. Then, when the import plugin tries to resolve any of those names it will be able to help the import plugin to locate the package.
This resolver accepts only one configuration option: packages
(string or array of strings, required) which must be an absolute path to Lerna's packages directory or an array of such absolute paths.
// .eslintrc.js
const path = require('path')
module.exports = {
settings: {
'import/resolver': {
'eslint-import-resolver-lerna': {
packages: path.resolve(__dirname, 'src/packages')
}
}
}
}
See the LICENSE file for information.
FAQs
Resolver for Lerna-based projects for eslint-plugin-import
The npm package eslint-import-resolver-lerna receives a total of 4,006 weekly downloads. As such, eslint-import-resolver-lerna popularity was classified as popular.
We found that eslint-import-resolver-lerna demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.