Skip to content

Commit

Permalink
fix: indent decorator issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hannoeru committed Dec 30, 2021
1 parent cb6af1b commit 8936eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
// Override JS
'no-useless-constructor': 'off',
'indent': 'off',
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/indent': ['error', 2, { ignoredNodes: ['PropertyDefinition'] }],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'error',
Expand Down

0 comments on commit 8936eb7

Please sign in to comment.