aboutsummaryrefslogtreecommitdiffstats
path: root/qt-cpp/.eslintrc.cjs
blob: 51ca94ad1d1f51676e60e8cca122ef3bb46d770f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* eslint-env node */
module.exports = {
  extends: ['../common/.eslintrc.cjs'],
  plugins: ['@typescript-eslint'],
  parser: '@typescript-eslint/parser',
  parserOptions: {
    project: true,
    project: 'tsconfig.json',
    tsconfigRootDir: __dirname
  }
};