eext-jiepei-helper/.eslintrc.js
2025-06-04 22:43:00 +08:00

15 lines
340 B
JavaScript

module.exports = {
plugins: ['eslint-plugin-tsdoc'],
extends: ['alloy', 'alloy/typescript'],
ignorePatterns: ['/build/dist/', '/coverage/', '/dist/', '/node_modules/', '/.eslintcache', 'debug.log'],
env: {
browser: true,
},
rules: {
'no-param-reassign': 'off',
'max-params': 'off',
'tsdoc/syntax': 'warn',
},
root: true,
};