@futuredapp/eslint-config-nest
v1.0.0
Published
Futured's linting style for Nest projects
Keywords
Readme
ESLint Config for Nest projects
Futured's approach to styling Nest projects.
Installation
$ npm install @futuredapp/eslint-config-nest --save-devor
$ yarn add @futuredapp/eslint-config-nest -DUsage
Add the ESLint configuration to either your eslint.config.mjs or eslint.config.js:
eslint.config.(m)js
import eslintConfig from '@futuredapp/eslint-config-nest'
export default [
{
// Files to ignore must be listed first
ignores: [],
},
...eslintConfig,
{
rules: {
// your custom rules
},
},
]WebStorm
To update WebStorm to use the ESLint configuration on save, follow these steps:
Press ⌘ Сmd 0, to open settings and then select Languages & Frameworks | JavaScript | Code Quality Tools | ESLint.
Select Manual ESLint Configuration.
In the Extra eslint options field, type
--flag unstable_ts_config.Click Apply to save the changes and close the dialog.
