set ident rules

This commit is contained in:
b1ek 2024-07-27 21:15:43 +10:00
parent bd1c7c7a42
commit abda1b10ef
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'error',
'no-unused-vars': 'error'
'no-unused-vars': 'error',
'indent': ['error', 4 ]
},
};