This package provides a custom ESLint configuration for TypeScript projects, ensuring consistent code quality and best practices.
- Predefined rules for TypeScript
- Optimized for NestJS and Node.js projects
- Support Stylistic for code formatting
- Extends some popular ESLint configurations
- Easy to integrate and customize
npm install --save-dev @quazex/eslint-configCreate an .eslintrc.json file in the root of your project and extend this configuration:
{
"extends": "@quazex/eslint-config"
}Overrides
You can override any predefined rule in the config, for example:
{
"extends": "@quazex/eslint-config",
"rules": {
"init-declarations": "off",
}
}MIT