# comment-word-disallowed-list Specify a list of disallowed words within comments. ```css /* words within comments */ /** ↑ ↑ ↑ * These three words */ ``` **Caveat:** Comments within _selector and value lists_ are currently ignored. The [`message` secondary option](../../../docs/user-guide/configure.md#message) can accept the arguments of this rule. ## Options `array|string|regexp`: `["array", "of", "words", /or/, "/regex/"]|"word"|"/regex/"|/regex/` If a string is surrounded with `"/"` (e.g. `"/^TODO:/"`), it is interpreted as a regular expression. Given: ```json ["/^TODO:/", "badword"] ``` The following patterns are considered problems: ```css /* TODO: */ ``` ```css /* TODO: add fallback */ ``` ```css /* some badword */ ``` The following patterns are _not_ considered problems: ```css /* comment */ ```