mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
const { tslint, deepmerge } = require('@ice/spec');
|
|
|
|
module.exports = deepmerge(tslint, {
|
|
rules: {
|
|
"global-require": 0,
|
|
"@typescript-eslint/interface-name-prefix": 0
|
|
},
|
|
});
|