@neatfreak/eslint-plugin
v1.0.0-pre.0
Published
Sensible ESLint defaults for neat freaks
Downloads
2
Maintainers
Readme
@neatfreak/eslint-plugin
This plugin provides opinionated, sensible rules that...
- Help simplify ESLint setup.
- Help you adhere to best practices.
- Identify probable issue vectors in your code (pitfalls and code smells).
- Maximize readability and understanding of your code.
- Maximize ease of maintaining and refactoring your code.
- Maximize consistency of style and practices.
- Are designed to augment and/or compliment as opposed to override or conflict when using Prettier.
Rules that might cause excessive errors and are not auto-fixable are set to "warn".
For these reasons, many rules are enabled and, of those, most are using the recommended configuration except where it makes sense for achieving said goals. When used with Prettier, conflicting rules are disabled.
If there is a rule you just can't stomach, simply override it. This way you have a solid starting point. Publish your version publicly or privately and share it within your organization to maintain consistency between all your projects!
If you feel like any rule is just too cumbersome or restrictive, in general, please consider contributing to this project and let's make it better together!
💁♂️ You might also consider using @therealklanni/prettier-config
Available configurations
(and what they configure)
plugin:@neatfreak/base
(must always be applied first)plugin:@neatfreak/typescript
plugin:@neatfreak/react
plugin:@neatfreak/jest
plugin:@neatfreak/node
orplugin:@neatfreak/cli
plugin:@neatfreak/prettier
(must always be applied last)
Usage
Install required dependencies
npm install -D @neatfreak/eslint-plugin eslint
Optionally, view and install any additional dependencies, as needed
# list dependencies npm view @neatfreak/eslint-plugin peerDependencies # install what you need npm install -D eslint-plugin-{jest,node,react} @neatfreak/prettier-config ...
Configure as shown here (more examples below)
{ // the only plugin you need to specify is this one // or any plugin not provided by this one "plugins": ["@neatfreak"], "extends": ["plugin:@neatfreak/base", "plugin:@neatfreak/prettier"] }
???
Profit
"Hard mode" example
DIY file globs. Allows for more control over how configs are applied.
{
"plugins": ["@neatfreak"],
"extends": [
"some-unrelated-config",
// apply @neatfreak configs after unrelated configs
"plugin:@neatfreak/base"
],
"overrides": [
// if you need other unrelated overrides, add them first
{
"files": ["*.js"],
"rules": {
"semi": ["error", "always"]
}
},
{
"files": ["*.ts"],
"extends": [
"some-unrelated-config",
// apply @neatfreak configs after unrelated configs
"plugin:@neatfreak/typescript"
],
"rules": {
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/init-declarations": "off"
}
},
{
"files": ["**/__tests__/**"],
// base config will get applied by above overrides
"extends": ["plugin:@neatfreak/jest"],
"rules": {
"jest/no-if": "warn"
}
},
// Apply last when using Prettier config
{
"files": ["*.?(ts,js)"],
"extends": ["plugin:@neatfreak/prettier"]
}
]
}
"Easy mode" example
Applies configs automatically wrapped in an override
with a default files
glob.
{
"plugins": ["@neatfreak"],
"extends": [
"some-unrelated-config",
// apply @neatfreak configs after unrelated configs
"plugin:@neatfreak/base",
// applied using pattern matching
"plugin:@neatfreak/jest auto",
"plugin:@neatfreak/typescript auto",
// applied globally
"plugin:@neatfreak/prettier"
],
// example rules overrides
"rules": {
"semi": ["error", "always"],
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/init-declarations": "off",
"jest/no-if": "warn"
}
}
Note: the
prettier
,node
, andcli
configs do not have an "auto" config, as these don't typically require an override.
"Lazy mode" example
Automatically applies everything.
Note: requires installing all optional peer dependencies (see Usage)
{
"plugins": ["@neatfreak"],
"extends": ["plugin:@neatfreak/lazy"],
// example rules overrides
"rules": {
"semi": ["error", "always"],
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/init-declarations": "off",
"jest/no-if": "warn"
}
}