.eslintrc.js 357 Bytes
// eslint-disable-next-line import/no-commonjs
module.exports = {
  root: true,
  extends: ['@modern-js-app', require.resolve('@feewee/fabric/dist/eslint')],
  rules: {
    '@typescript-eslint/type-annotation-spacing': 'off',
    'import/namespace': 'warn',
  },
  parserOptions: {
    tsconfigRootDir: __dirname,
    project: ['../tsconfig.json'],
  },
};