diff --git a/.eslintrc.js b/.eslintrc.js index 79d2113..3db17ec 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,9 +17,9 @@ module.exports = { }, rules: { '@typescript-eslint/explicit-function-return-type': 'off', - '@typescript-eslint/no-explicit-any': 'warn', + '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], - 'no-console': ['warn', { allow: ['warn', 'error'] }], + 'no-console': 'off', }, ignorePatterns: ['dist/', 'node_modules/', '*.js'], -}; +};