Created
October 30, 2023 20:38
-
-
Save Bjorn-Eric-Abr/09f200d112d9a05afc1ccbc12d5733f5 to your computer and use it in GitHub Desktop.
Eslint Typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-env node */ | |
| // | |
| // pnpm add --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint typescript eslint-plugin-unicorn | |
| module.exports = { | |
| extends: [ | |
| 'eslint:recommended', | |
| 'plugin:@typescript-eslint/recommended', | |
| 'plugin:unicorn/recommended', | |
| ], | |
| parser: '@typescript-eslint/parser', | |
| plugins: ['@typescript-eslint'], | |
| root: true, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment