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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -129,6 +129,13 @@ const config = (module.exports = {
*/
'no-void': ['error', { allowAsStatement: true }],
/**
* https://eslint.org/docs/latest/rules/indent
*
* Delegated to Prettier.
*/
indent: 'off',
/**
* https://eslint.org/docs/latest/rules/sort-imports
*/

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,