Linter 规则规则列表单个变量声明符单个变量声明符禁止在同一个声明语句中定义多个变量。 无效示例 const foo = 1, bar = "2"; 有效示例 const foo = 1; const bar = "2";