Skip to content
Snippets Groups Projects
Commit 00f960e7 authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: deleted eslint indentation rule, instead using the prettier's one;...

fix: deleted eslint indentation rule, instead using the prettier's one; consistent function parameters/call arguments indentation
parent 5947a157
No related branches found
No related tags found
No related merge requests found
......@@ -27,10 +27,8 @@ module.exports = {
'@typescript-eslint/comma-spacing': ['error', { 'before': false, 'after': true }],
'@typescript-eslint/default-param-last': ['error'],
'@typescript-eslint/dot-notation': ['error'],
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/keyword-spacing': ['error', { 'before': true, 'after': true }],
'@typescript-eslint/no-empty-function': ['error'],
'@typescript-eslint/no-extra-parens': ['error'],
'@typescript-eslint/no-extra-semi': ['error'],
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-unused-expressions': ['error'],
......@@ -80,6 +78,8 @@ module.exports = {
'comma-spacing': 'off',
'comma-style': ['error', 'last'],
'func-call-spacing': ['error', 'never'],
'function-call-argument-newline': ['error', 'consistent'],
'function-paren-newline': ['error', 'consistent'],
'implicit-arrow-linebreak': ['error', 'beside'],
'indent': 'off',
'jsx-quotes': ['error', 'prefer-single'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment