Files
kupshop/web/common/webpack/assets/js-shop/.eslintrc.js
2025-08-02 16:30:27 +02:00

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',
}
};