0.12.0 β’ Published 12 months ago
eslint-plugin-nitpick v0.12.0
eslint-plugin-nitpick
Nitpicky ESLint rules.
Installation
npm install -D eslint eslint-plugin-nitpickConfiguration
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.
Rules
πΌ 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)) | π β | π‘ |
Configs
| Name | |
|---|---|
| π | all |
| β | recommended |