14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@repo/eslint-config/react-internal.js'],
|
|
parser: '@typescript-eslint/parser',
|
|
// parserOptions: {
|
|
// project: './tsconfig.lint.json',
|
|
// },
|
|
rules: {
|
|
'no-redeclare': 'off',
|
|
'no-unused-vars': 'off',
|
|
},
|
|
};
|