12 lines
413 B
JavaScript
12 lines
413 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
|
'plugin:react-hooks/recommended',
|
|
],
|
|
'rules': {
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/interface-name-prefix': 'off',
|
|
}
|
|
};
|