lint: updated eslint rules

This commit is contained in:
원더 2021-01-04 20:09:41 +09:00
parent 93cf2039a5
commit 6b2c0195b2

View File

@ -30,14 +30,9 @@ module.exports = {
'react/prop-types': 'off',
'react/react-in-jsx-scope': 'off',
'jsx-a11y/anchor-is-valid': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': ['warn'],
'@typescript-eslint/explicit-function-return-type': [
'warn',
{
allowExpressions: true,
allowConciseArrowFunctionExpressionsStartingWithVoid: true,
},
],
indent: [
'error',
'tab'