c044460a91
* Fix lint warnings * Let vercel build when unused import
33 lines
851 B
JavaScript
33 lines
851 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['lodash', 'unused-imports'],
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:react-hooks/recommended',
|
|
'plugin:@next/next/recommended',
|
|
'prettier',
|
|
],
|
|
rules: {
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'@next/next/no-img-element': 'off',
|
|
'@next/next/no-typos': 'off',
|
|
'linebreak-style': ['error', 'unix'],
|
|
'lodash/import-scope': [2, 'member'],
|
|
'unused-imports/no-unused-imports': 'warn',
|
|
},
|
|
ignorePatterns: ['/public/mtg/*'],
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
}
|