mirror of
https://github.com/klxf/eext-jiepei-helper.git
synced 2025-09-21 16:13:25 +08:00
15 lines
340 B
JavaScript
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,
|
|
};
|