lint-check
raw JSON → 0.0.2 verified Fri May 01 auth: no javascript
A unified linting tool that runs Prettier, ESLint, and Markdownlint in a single command. Version 0.0.2 is the initial release, with no established release cadence yet. It differentiates by combining three popular linters into one package, but is very early-stage and lacks documentation or tests.
Common errors
error Cannot find module 'lint-check'. ↓
cause Package not installed or ESM-only usage without proper setup.
fix
Install with 'npm install lint-check' and ensure project is configured for ESM (e.g., 'type': 'module' in package.json).
Warnings
gotcha Pre-alpha package with no stable API; breaking changes likely. ↓
fix Pin to exact version and test thoroughly.
gotcha README missing; no documentation or usage examples provided. ↓
fix Check source code or GitHub issues for help.
Install
npm install lint-check yarn add lint-check pnpm add lint-check Imports
- default wrong
const lintCheck = require('lint-check')correctimport lintCheck from 'lint-check'
Quickstart