Files
meal-planner/.eslintrc.cjs

13 lines
319 B
JavaScript

module.exports = {
root: true,
extends: ['next/core-web-vitals', 'next/typescript'],
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': ['warn', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
}],
},
}