0.8.2 • Published 2 years ago

eslint-config-lunde v0.8.2

Weekly downloads
23
License
MIT
Repository
github
Last release
2 years ago

eslint-config-lunde

npm i -D eslint-config-lunde

ESLint rules I'm using for my projects

  • Automatically detects TypeScript and adds appropriate parser/plugins
  • Automatically detects testing libraries and adds appropriate plugins and rules
  • Automatically detects React and adds appropriate plugins and rules

Quick start

// package.json
"eslintConfig": {
  "extends": ["lunde"]
}

// with overrides
"eslintConfig": {
  "extends": ["lunde"],
  "rules": {...}
}