Registry / testing / linteverything

linteverything

JSON →
library0.9.5jsnpmunverified

A universal linter that runs multiple linters (checkstyle, ESLint, HTMLLint, stylelint) on a project with a single command. Version 0.9.5 is the latest stable release, with no recent updates. It wraps existing linters and provides unified configuration and output. Alternatives include running individual linters separately.

npm install linteverything
INSTALL
IMPORT
SIG · LINTEVERYTHING
L
linteverything
testingjavascriptv0.9.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

linteverything
const linteverything = require('linteverything')
import linteverything from 'linteverything'
Package only provides CommonJS module; ESM import not supported.
.linteverythingrc.js
// .linteverythingrc.js module.exports = { verbose: true }
export default { verbose: true }
Config file must use CommonJS module.exports.
CLI
npx linteverything
linteverything
CLI is run via npx or node_modules/.bin. Not globally installed.

Shows installation, configuration file, and programmatic usage with CommonJS require.

// Install npm install linteverything --save-dev // Create .linteverythingrc.js module.exports = { ignore: ['node_modules', '.git'], verbose: true }; // In Node.js const linteverything = require('linteverything'); linteverything({ verbose: true }).then(result => { console.log(result); });
linteverything --version
Debug
Known issues
deprecatedThe package has not been updated since 2019.
fix
Consider using individual linters directly (eslint, stylelint, etc.)
affects: <=0.9.5
breakingRequires Java installed for checkstyle linter.
fix
Install Java Runtime Environment (JRE) or disable checkstyle in options.
affects: >=0.0.0
gotchaThe default logLevel is 'error', meaning warnings are hidden unless changed.
fix
Set logLevel: 'all' or 'warning' in options.
affects: >=0.0.0
Errors
Common errors & fixes
Error: Cannot find module 'linteverything'
Package not installed or not in node_modules.
fix
Run npm install linteverything --save-dev
TypeError: linteverything is not a function
Using ES6 import syntax with a CommonJS-only module.
fix
Use const linteverything = require('linteverything')
Upgrade
Version history
0.9.5latest on npm
Audit
Dependencies
checkstyleoptionalJava linter for Java projects
eslintoptionalJavaScript/TypeScript linter
htmllintoptionalHTML linter
stylelintoptionalCSS linter
Agent activity
4 hits · last 30 days
node
4
Resources
linteverything — npm install linteverything · libregistry