10 lines
236 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-magic-numbers': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
},
extends: ['@modern-js'],
};