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