10 lines
303 B
JavaScript
10 lines
303 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['next/core-web-vitals', 'prettier'],
|
|
parserOptions: { ecmaVersion: 2022, sourceType: 'module' },
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
|
},
|
|
};
|