A comprehensive guide to code linting across different programming languages
Linting is the process of running a program that analyzes code for potential errors, bugs, stylistic errors, and suspicious constructs. It helps maintain code quality, consistency, and prevents potential runtime issues.
npm install eslint --save-dev npx eslint --init
{ "env": { "browser": true, "es2021": true }, "extends": "eslint:recommended", "rules": { "indent": ["error", 2], "quotes": ["warn", "single"] } }
pip install pylint pylint --generate-rcfile > .pylintrc
[MESSAGES CONTROL] disable=C0111,C0103 [FORMAT] max-line-length=100 indent-string=' '
// ❌ Bad console.log(undefinedVar); // ✅ Good const definedVar = 'Hello'; console.log(definedVar);
// ⚠️ Warning function calculate(a, b) { const unused = 'test'; return a + b; } // ✅ Good function calculate(a, b) { return a + b; }
npm install husky --save-dev npx husky install npx husky add .husky/pre-commit "npm run lint"