Eslint规则,以避免在箭头函数内返回void函数

时间:2020-03-20 14:41:20

标签: javascript typescript eslint typescript-eslint

eslint@typescript-eslint中是否可以找到这种类型的错误?

错误

function doSmth(): void { 
  ... 
}

onClick={(): void => { return doSmth() }}  // 'warn' don't need to return the void function

有效

function doSmth(): void { 
  ... 
}

onClick={(): void => { doSmth() }}

0 个答案:

没有答案