mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 12:57:46 +00:00
Adds "hydrogen" framework preset for Shopify Hydrogen framework to allow for zero-config usage of the `@vercel/hydrogen` Builder.
9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
module.exports = {
|
|
extends: ['plugin:hydrogen/recommended', 'plugin:hydrogen/typescript'],
|
|
rules: {
|
|
'node/no-missing-import': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
},
|
|
};
|