Nitpicky ESLint rules.
npm install -D eslint eslint-plugin-nitpick
To use the recommended configuration:
import nitpick from "eslint-plugin-nitpick";
export default [
// ...
nitpick.configs.recommended,
];
To turn on every rule:
import nitpick from "eslint-plugin-nitpick";
export default [
// ...
nitpick.configs.all,
];
See more: Configuring Plugins.
💼 Configurations enabled in.
🌐 Set in the all
configuration.
✅ Set in the recommended
configuration.
🔧 Automatically fixable by the --fix
CLI option.
💡 Manually fixable by editor suggestions.
Name | Description | 💼 | 🔧 | 💡 |
---|---|---|---|---|
no-redundant-vars | Warns against variables that are returned without any other usage | 🌐 ✅ | 💡 | |
no-useless-interpolation | Warns against template-literal interpolation with a literal | 🌐 ✅ | 🔧 | 💡 |
no-useless-rest | Warns against using a rest element without destructuring other properties/elements | 🌐 ✅ | 💡 | |
prefer-if-conditionals | Prefer an if statement to using logical operators (?: , && or || ) in expressions |
🌐 ✅ | 🔧 | 💡 |
prefer-not-equals | Prefer using the not-equals operator (a !== b ) over inverting the equals operator (!(a === b) ) |
🌐 ✅ | 💡 |
Name | |
---|---|
🌐 | all |
✅ | recommended |