refactor: Disable ESLint indent rule (no-changelog) (#4828)

* 👕 Disable ESLint `indent` rule

* 🔥 Remove redundant rule
This commit is contained in:
Iván Ovejero
2022-12-06 16:07:26 +01:00
committed by GitHub
parent 1722c6b0c5
commit 7b819ad5a1
2 changed files with 7 additions and 1 deletions

View File

@@ -28,7 +28,6 @@ module.exports = {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
semi: [2, 'always'],
indent: ['error', 'tab'],
'comma-dangle': ['error', 'always-multiline'],
'no-tabs': 0,
'no-labels': 0,