tessl install tessl/npm-eslint-config-node@3.0.0Pluggable ESLint configuration for Node.js that extends ESNext with Node.js-specific safety checks and best practices
Agent Success
Agent success rate when using this tile
73%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.12x
Baseline
Agent success rate without this tile
65%
{
"context": "This criteria evaluates how effectively the engineer uses Lerna to implement monorepo management functionality, focusing on proper usage of Lerna's API for bootstrapping, versioning, package discovery, and dependency management.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Lerna initialization",
"description": "Uses Lerna's Project class or equivalent API to initialize and configure a Lerna workspace with proper configuration (package locations, versioning mode)",
"max_score": 15
},
{
"name": "Bootstrap implementation",
"description": "Uses Lerna's bootstrap command or BootstrapCommand class to install dependencies and create symlinks between local packages",
"max_score": 25
},
{
"name": "Version command",
"description": "Uses Lerna's version command or VersionCommand class to update package versions, with support for different increment types (major, minor, patch) and version modes (fixed/independent)",
"max_score": 25
},
{
"name": "Package discovery",
"description": "Uses Lerna's getPackages() or Package.list() methods to discover and retrieve package information from the workspace based on configuration patterns",
"max_score": 20
},
{
"name": "Symlink creation",
"description": "Properly leverages Lerna's symlinking functionality (via bootstrap) to create cross-package symlinks for local dependencies",
"max_score": 10
},
{
"name": "Dependency hoisting",
"description": "Utilizes Lerna's dependency hoisting features (via bootstrap --hoist or npmClient configuration) to manage shared dependencies at the root level",
"max_score": 5
}
]
}