Skip to content

Instantly share code, notes, and snippets.

@Bjorn-Eric-Abr
Created October 30, 2023 20:38
Show Gist options
  • Select an option

  • Save Bjorn-Eric-Abr/09f200d112d9a05afc1ccbc12d5733f5 to your computer and use it in GitHub Desktop.

Select an option

Save Bjorn-Eric-Abr/09f200d112d9a05afc1ccbc12d5733f5 to your computer and use it in GitHub Desktop.
Eslint Typescript
/* 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