fix: ts indent ingores
This commit is contained in:
parent
bce5016b53
commit
316bbd903b
@ -29,7 +29,12 @@ module.exports = {
|
||||
// Override JS
|
||||
'no-useless-constructor': 'off',
|
||||
'indent': 'off',
|
||||
'@typescript-eslint/indent': ['error', 2],
|
||||
'@typescript-eslint/indent': ['error', 2, {
|
||||
ignoredNodes: [
|
||||
'JSXAttribute',
|
||||
'TSTypeParameterInstantiation',
|
||||
],
|
||||
}],
|
||||
'no-unused-vars': 'off',
|
||||
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
||||
'no-redeclare': 'off',
|
||||
|
Loading…
Reference in New Issue
Block a user