build(ui): add eslint no-console rule

This commit is contained in:
psychedelicious
2024-05-13 15:12:43 +10:00
parent b5d42fbc66
commit 76e181fd44
5 changed files with 10 additions and 1 deletions

View File

@ -10,6 +10,8 @@ module.exports = {
'path/no-relative-imports': ['error', { maxDepth: 0 }],
// https://github.com/edvardchen/eslint-plugin-i18next/blob/HEAD/docs/rules/no-literal-string.md
'i18next/no-literal-string': 'error',
// https://eslint.org/docs/latest/rules/no-console
'no-console': 'error',
},
overrides: [
/**