Integrates JSLint into the Spumko/Lab testing framework, enabling automatic JavaScript linting as part of test suites. Version 0.0.3 is the latest stable release, with no active development or updates since 2014. It is opinionated, scanning all .js files in /lib and /test directories by default. Configuration is done via a standard .jslint JSON file. This package is deprecated in favor of more modern linters like ESLint and newer test runners like Lab's built-in linting support.
npm install lab-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to integrate lab-lint into a Lab test suite to automatically lint all .js files in /lib and /test directories.
Replace with eslint and lab-eslint or similar modern tools.
Ensure you pass the correct Lab object and __dirname.
If you need different paths, consider forking the package or using a different linting integration.
Use a Node.js version <= 0.10.x or migrate to a modern linter.
Run 'npm install lab --save-dev' to add the lab testing framework.
Replace 'var lint = require("lab-lint"); lint(Lab, dirname);' with 'require("lab-lint")(Lab, dirname);'.