2.0.3 • Published 4 years ago

@sanv/eslint-config-unicorn-typescript v2.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Eslint Unicorn Configuration with Typescript Support

npm version

  1. Install the correct version of package, which are listed by the command:
npm install "@sanv/eslint-config-unicorn-typescript" --save-dev
  1. Add next line to your .eslintrc.js:
module.exports = {
  parser: '@typescript-eslint/parser',
  plugins: ['prettier', '@typescript-eslint'],
  parserOptions: {
    project: './tsconfig.json',
    sourceType: 'module',
  },
  extends: [
    '@sanv/eslint-config-unicorn-typescript',
    'plugin:prettier/recommended',
    'prettier/@typescript-eslint',
  ],
}