mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
21 lines
466 B
JavaScript
21 lines
466 B
JavaScript
export default {
|
|
extends: ['plugin:@next/next/recommended'],
|
|
rules: {
|
|
'no-console': [
|
|
'error',
|
|
{ allow: ['error', 'warn'] },
|
|
],
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'warn',
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['./graphql/**/*.ts', './lib/hooks.ts'],
|
|
rules: {
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
},
|
|
}
|
|
]
|
|
}
|