ESLint + TypeScript

  • 2019年TSLintはdeprecatedになったので、2020年以降はESLintを代わりに使う

## インストール

npm install --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin

設定

.eslintrc.js 👇👇👇

module.exports = {
  root: true,
  parser: '@typescript-eslint/parser',
  plugins: [
    '@typescript-eslint',
  ],
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/recommended',
  ],
};

参考


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS