@therealklanni/eslint-plugin
v0.1.1
Published
ESLint plugin
Downloads
1
Maintainers
Readme
@therealklanni/eslint-plugin
This plugin provides configs from @therealklanni/eslint-config
These configs provide an opinionated set of rules that:
- Help you adhere to best practices.
- Help catch probable issue vectors in your code (common pitfalls and code-smells).
- Maximize readability/understanding of your code.
- Maximize (ease of) maintaining/refactoring your code.
Any rules that might cause excessive errors and are not auto-fixable are set to "warn".
For these reasons, many of the 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.
💁♂️ You might also consider using @therealklanni/prettier-config
Available configurations
plugin:@therealklanni
(base config must always be applied)plugin:@therealklanni/typescript
plugin:@therealklanni/react
plugin:@therealklanni/jest
plugin:@therealklanni/node
orplugin:@therealklanni/cli
plugin:@therealklanni/prettier
(Note: make sure this is always the last config)
Usage
- Install required dependencies
npm install -D @therealklanni/eslint-{plugin,config} eslint{,-plugin-import}
- Optionally, view and install any additional dependencies, as needed
# list dependencies npm view @therealklanni/eslint-plugin peerDependencies # install what you need npm install -D eslint-plugin-{jest,node,react} @therealklanni/prettier-config ...
- Configure as shown here
{ // the only plugin you need to specify is this one // or any plugin not provided by this one "plugins": ["@therealklanni"], "extends": [ // add one or more configs, AFTER any other configs "plugin:@therealklanni/typescript", "plugin:@therealklanni/jest" ], // override any rules, if needed "rules": { "@typescript-eslint/semi": ["error", "always"] } }
- ???
- Profit
"Hard mode" example
DIY file globs. Allows for more control over how configs are applied.
{
"plugins": ["@therealklanni"],
"extends": [
"some-unrelated-config",
// apply after unrelated configs
"@therealklanni"
],
"overrides": [
// if you need other unrelated overrides, add them first
{
"files": ["*.js"],
"extends": ["@therealklanni"],
"rules": {
"semi": ["error", "always"]
}
},
{
"files": ["*.ts"],
"extends": [
"some-unrelated-config",
// apply after unrelated configs
"@therealklanni",
"plugin:@therealklanni/typescript"
],
"rules": {
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/init-declarations": "off"
}
},
{
"files": ["**/__tests__/**"],
// base config will get applied by above overrides
"extends": ["plugin:@therealklanni/jest"],
"rules": {
"jest/no-if": "warn"
}
},
// Apply last when using Prettier config
{
"files": ["*.?(ts,js)"],
"extends": ["plugin:@therealklanni/prettier"]
}
]
}
"Easy mode" example
Applies configs automatically wrapped in an override
with a default files
glob.
{
"plugins": ["@therealklanni"],
"extends": [
"some-unrelated-config",
// apply @therealklanni configs after unrelated configs
"@therealklanni",
"plugin:@therealklanni/jest/auto",
"plugin:@therealklanni/typescript/auto",
// applied globally
"plugin:@therealklanni/prettier"
],
"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.