fix: update ts rules
This commit is contained in:
parent
9153f9e759
commit
5d507f1d93
@ -9,6 +9,8 @@ module.exports = {
|
|||||||
],
|
],
|
||||||
rules: {
|
rules: {
|
||||||
// TS
|
// TS
|
||||||
|
'no-useless-constructor': 'off',
|
||||||
|
'@typescript-eslint/semi': ['error', 'never'],
|
||||||
'@typescript-eslint/no-unused-vars': [2, { args: 'none' }],
|
'@typescript-eslint/no-unused-vars': [2, { args: 'none' }],
|
||||||
'@typescript-eslint/indent': ['error', 2],
|
'@typescript-eslint/indent': ['error', 2],
|
||||||
'@typescript-eslint/member-delimiter-style': ['error', { multiline: { delimiter: 'none' } }],
|
'@typescript-eslint/member-delimiter-style': ['error', { multiline: { delimiter: 'none' } }],
|
||||||
@ -17,5 +19,7 @@ module.exports = {
|
|||||||
'@typescript-eslint/explicit-function-return-type': 'off',
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
||||||
'@typescript-eslint/explicit-member-accessibility': 'off',
|
'@typescript-eslint/explicit-member-accessibility': 'off',
|
||||||
'@typescript-eslint/no-explicit-any': 'off',
|
'@typescript-eslint/no-explicit-any': 'off',
|
||||||
|
'@typescript-eslint/no-parameter-properties': 'off',
|
||||||
|
'@typescript-eslint/no-empty-interface': 'off',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user