I'm exporting functions using ES6 syntax, and jsdoc-require isnt catching that jsdoc blocks should be on them. example: ``` export const functionName = (someParam: string): string => { return 'something awesome here'; } ```