@betsys-eslint/eslint-config-nestjs
Set of ESLint rules we use for our Nest.js code in TypeScript
Requirements
We recommend using Node.js v16 as we do not support lower version of Node.js.
Quick Start
Installing automatically
To install the configuration with all the necessary configuration changes, use the following:
npx @betsys-eslint/install config nestjs
To read more about our installation script visit: @betsys-eslint/install.
.eslintrc.json
file. We plan to support other configuration files (.js
and .yml
) in the future.
Installing manually
To install the configuration manually, use the following:
npm install --save-dev @betsys-eslint/eslint-config-nestjs
after installation, add the configuration to you ESLint config:
{
"overrides": [
{
files: ["*.ts"],
// Locate configuration for your TS files
"extends": [
// ...
"@betsys-eslint/nestjs"
]
}
]
}
About the configuration
This configuration is based on our @betsys-eslint/eslint-config-typescript
configuration.