1
1
mirror of https://github.com/bitgapp/eqMac.git synced 2024-11-22 22:32:17 +03:00

changes to lint rules

This commit is contained in:
Nodeful 2021-03-24 17:03:31 +02:00
parent 010535b4be
commit b070884ec7

View File

@ -10,6 +10,8 @@ module.exports = {
files: ['*.ts'],
rules: {
radix: 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'accessor-pairs': 'off',
'return-undefined': 'off',
'no-throw-literal': 'off',
@ -20,7 +22,6 @@ module.exports = {
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-extraneous-class': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unused-vars': [2, { args: 'none' }],
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/promise-function-async': 'off',
@ -33,8 +34,5 @@ module.exports = {
'no-async-promise-executor': 'off',
'@typescript-eslint/no-dynamic-delete': 'off'
}
}],
env: {
node: true
}
}]
}