module.exports = { extends: 'erb', rules: { // A temporary hack related to IDE not resolving correct package.json 'import/no-extraneous-dependencies': 'off', 'import/prefer-default-export': 'off', '@typescript-eslint/no-explicit-any': 'off', 'no-underscore-dangle': 'off', 'no-console': 'off', 'jsx-quotes': ['error', 'prefer-double'], 'react/jsx-props-no-spreading': 'off', '@typescript-eslint/no-non-null-assertion': 'off', 'no-nested-ternary': 'off', 'react/no-unescaped-entities': [ 'error', { forbid: ['>', "'", '}'], }, ], }, parserOptions: { ecmaVersion: 2020, sourceType: 'module', project: './tsconfig.json', tsconfigRootDir: __dirname, createDefaultProgram: true, }, settings: { 'import/resolver': { // See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below node: {}, webpack: { config: require.resolve('./.erb/configs/webpack.config.eslint.js'), }, }, 'import/parsers': { '@typescript-eslint/parser': ['.ts', '.tsx'], }, }, };