- 将主键从自增id改为GUID格式并添加格式校验 - 为service_mask添加表达式索引优化首位查询性能 - 更新相关文档说明改造方案与验证步骤 - 添加统计模块记录数据库写入与Kafka消费量 - 重构Redis心跳协议改用LIST类型存储项目状态 - 修复部署脚本中的服务名称不一致问题
23 lines
397 B
JavaScript
23 lines
397 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
es2022: true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['test/**/*.js'],
|
|
env: {
|
|
mocha: true,
|
|
},
|
|
},
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
extends: ['eslint:recommended'],
|
|
ignorePatterns: ['dist/', 'build/', 'coverage/', 'node_modules/', 'release/'],
|
|
rules: {},
|
|
};
|