deactivate node rule

This commit is contained in:
Timo Hocker 2020-05-13 21:20:17 +02:00
parent 83e2f43fc0
commit ccbbe2d914

View File

@ -49,6 +49,7 @@ module.exports = {
'tsdoc/syntax': 'error',
// deactivating commonjs rules
'id-match': ['error', '^([a-z][a-z0-9_]*|[A-Z][a-zA-Z]*)$', { onlyDeclarations: true }],
'no-underscore-dangle': 'off'
'no-underscore-dangle': 'off',
'node/no-missing-import': 'off'
}
}