summaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: 3ced4092354a4161cd16de86aa72c9289946972a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
  root: true,
  parser: '@typescript-eslint/parser',
  plugins: [
    '@typescript-eslint',
  ],
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/eslint-recommended',
    'plugin:@typescript-eslint/recommended',
  ],
};