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