I would like to enforce directive comments to use block comment syntax on a single line, such as the following: ```js /* eslint-disable no-undef */ ``` The following styles should be disallowed: ```js // eslint-disable no-undef /* eslint-disable no-undef */ ``` Comments that are not directive comments should not be affected.