mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-19 06:53:25 +00:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
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'],
|
|
};
|