aurelia/aurelia

View on GitHub
examples/validation-with-router/.eslintrc.cjs

Summary

Maintainability
Test Coverage
const path = require('path');
const thisDir = path.resolve(__dirname);

module.exports = {
  extends: [
    '../../.eslintrc.cjs',
  ],
  parserOptions: {
    project: path.join(thisDir, 'tsconfig.json'),
    tsconfigRootDir: thisDir,
  },
  env: {
    browser: true,
  },
};