# no-asterisk-prefix-in-documentation-comments 📝 Disallow asterisk prefixes in documentation comments. 🚫 This rule is _disabled_ in the following [configs](https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config): ✅ `recommended`, ☑️ `unopinionated`. 🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix). This rule disallows the conventional indented asterisk prefix inside multiline documentation comments. No-gap asterisk lines like `* content` are ignored because the asterisk may be intentional comment content. ## Examples ```js // ❌ /** * Add two numbers. * @param {number} number1 The first number. * @param {number} number2 The second number. * @returns {number} The sum of the two numbers. */ ``` ```js // ✅ /** Add two numbers. @param {number} number1 The first number. @param {number} number2 The second number. @returns {number} The sum of the two numbers. */ ```