UNPKG

eslint-config-alloy

Version:
18 lines (17 loc) 491 B
module.exports = { rules: { /** * 禁止使用 namespace 来定义命名空间 * @category TypeScript * @reason 使用 es6 引入模块,才是更标准的方式。 * 允许使用 declare namespace ... {} 来定义外部命名空间 */ '@typescript-eslint/no-namespace': [ 'error', { allowDeclarations: true, allowDefinitionFiles: true } ] } };