custom-app-event
Version:
基于typescript, 实现一个简单的event库,快速集成发布订阅模式
17 lines (16 loc) • 452 B
Plain Text
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-non-null-assertion": "off",
// 允许自定义模块和命名空间
"@typescript-eslint/no-namespace": "off"
}
}