简体   繁体   中英

eslint rule to enforce Typescript optional parameter function syntax

I'd like to use eslint to enforce the succinct syntax for optional function parameters .

I would like to use the short ? syntax in this case. That is:

// Expected syntax
function myFunct(optionalInput?: number): void {...}

// Undesired syntax
function myFunct(optionalInput: number | undefined): void {...}

Is there any way to enforce this with eslint?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM