| /** | |
| * @type {import("@types/eslint").Linter.BaseConfig} | |
| */ | |
| module.exports = { | |
| extends: [ | |
| '@remix-run/eslint-config', | |
| 'plugin:hydrogen/recommended', | |
| 'plugin:hydrogen/typescript', | |
| ], | |
| rules: { | |
| '@typescript-eslint/ban-ts-comment': 'off', | |
| '@typescript-eslint/naming-convention': 'off', | |
| 'hydrogen/prefer-image-component': 'off', | |
| 'no-case-declarations': 'off', | |
| }, | |
| }; | |