19 lines
506 B
JavaScript
19 lines
506 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',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
'no-redeclare': 'off',
|
|
'no-unused-vars': 'off',
|
|
'no-undef': 'off',
|
|
},
|
|
};
|