版本

spaced-comment

强制在注释中的 ///* 后使用一致的空格

🔧 可修复

此规则报告的一些问题可以通过 --fix 命令行 选项自动修复。

此规则在 ESLint v8.53.0 中已 **弃用**。请使用 相应的规则@stylistic/eslint-plugin-js 中。

一些风格指南要求或禁止在注释的初始 ///* 后立即添加空格。在 ///* 后添加空格使阅读注释中的文本更容易。另一方面,在不添加空格的情况下注释掉代码更容易。

规则详细信息

此规则将强制执行注释开始处 ///* 后空格的一致性。它还为各种文档样式提供了一些例外。

选项

此规则接受两个选项。

  • 第一个是一个字符串,可以是 "always""never"。默认值为 "always"

    • 如果为 "always",则 ///* 后必须至少有一个空格。

    • 如果为 "never",则后面不应有空格。

  • 此规则还可以接受第二个选项,一个包含以下任意键的对象:"exceptions""markers"

    • "exceptions" 的值为一个字符串模式数组,这些模式被视为规则的例外。当模式从注释的开头开始并重复到行尾或(如果注释是单行注释)*/ 时,规则将不会发出警告。请注意,如果第一个参数为 "never",则忽略异常。
    "spaced-comment": ["error", "always", { "exceptions": ["-", "+"] }]
    
    • "markers" 的值为一个字符串模式数组,这些模式被视为文档块样式注释的标记,例如额外的 /,用于表示由 doxygen、vsdoc 等读取的文档,这些文档必须具有其他字符。"markers" 数组将应用于第一个参数的值,例如 "always""never"
    "spaced-comment": ["error", "always", { "markers": ["/"] }]
    

标记和异常之间的区别在于,标记仅出现在注释的开头,而异常可以出现在注释字符串中的任何位置。

您还可以为块注释和行注释定义单独的异常和标记。"block" 对象可以有一个额外的键 "balanced",一个布尔值,指定内联块注释是否应该有平衡的空格。默认值为 false

  • 如果 "balanced": true"always",则 /* 后必须至少有一个空格,并且 */ 前必须至少有一个空格。

  • 如果 "balanced": true"never",则 /* 后面或 */ 前面不应有空格。

  • 如果 "balanced": false,则不强制执行平衡空格。

"spaced-comment": ["error", "always", {
    "line": {
        "markers": ["/"],
        "exceptions": ["-", "+"]
    },
    "block": {
        "markers": ["!"],
        "exceptions": ["*"],
        "balanced": true
    }
}]

always

使用 "always" 选项时此规则的 错误 代码示例

在游乐场中打开
/*eslint spaced-comment: ["error", "always"]*/

//This is a comment with no whitespace at the beginning

/*This is a comment with no whitespace at the beginning */
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "block": { "balanced": true } }] */
/* This is a comment with whitespace at the beginning but not the end*/

使用 "always" 选项时此规则的 正确 代码示例

在游乐场中打开
/* eslint spaced-comment: ["error", "always"] */

// This is a comment with a whitespace at the beginning

/* This is a comment with a whitespace at the beginning */

/*
 * This is a comment with a whitespace at the beginning
 */

/*
This comment has a newline
*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always"] */

/**
* I am jsdoc
*/

never

使用 "never" 选项时此规则的 错误 代码示例

在游乐场中打开
/*eslint spaced-comment: ["error", "never"]*/

// This is a comment with a whitespace at the beginning

/* This is a comment with a whitespace at the beginning */

/* \nThis is a comment with a whitespace at the beginning */
在游乐场中打开
/*eslint spaced-comment: ["error", "never", { "block": { "balanced": true } }]*/
/*This is a comment with whitespace at the end */

使用 "never" 选项时此规则的 正确 代码示例

在游乐场中打开
/*eslint spaced-comment: ["error", "never"]*/

/*This is a comment with no whitespace at the beginning */
在游乐场中打开
/*eslint spaced-comment: ["error", "never"]*/

/**
* I am jsdoc
*/

exceptions

使用 "always" 选项结合 "exceptions" 时此规则的 错误 代码示例

在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["-"] } }] */

//--------------
// Comment block
//--------------
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "exceptions": ["-", "+"] }] */

//------++++++++
// Comment block
//------++++++++
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "exceptions": ["-", "+"] }] */

/*------++++++++*/
/* Comment block */
/*------++++++++*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "line": { "exceptions": ["-+"] } }] */

/*-+-+-+-+-+-+-+*/
// Comment block
/*-+-+-+-+-+-+-+*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["*"] } }] */

/******** COMMENT *******/

使用 "always" 选项结合 "exceptions" 时此规则的 正确 代码示例

在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "exceptions": ["-"] }] */

//--------------
// Comment block
//--------------
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "line": { "exceptions": ["-"] } }] */

//--------------
// Comment block
//--------------
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "exceptions": ["*"] }] */

/****************
 * Comment block
 ****************/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "exceptions": ["-+"] }] */

//-+-+-+-+-+-+-+
// Comment block
//-+-+-+-+-+-+-+

/*-+-+-+-+-+-+-+*/
// Comment block
/*-+-+-+-+-+-+-+*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["-+"] } }] */

/*-+-+-+-+-+-+-+*/
// Comment block
/*-+-+-+-+-+-+-+*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["*"] } }] */

/***************/

/********
COMMENT
*******/

markers

使用 "always" 选项结合 "markers" 时此规则的 错误 代码示例

在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "markers": ["/"] }] */

///This is a comment with a marker but without whitespace
在游乐场中打开
/*eslint spaced-comment: ["error", "always", { "block": { "markers": ["!"], "balanced": true } }]*/
/*! This is a comment with a marker but without whitespace at the end*/
在游乐场中打开
/*eslint spaced-comment: ["error", "never", { "block": { "markers": ["!"], "balanced": true } }]*/
/*!This is a comment with a marker but with whitespace at the end */

使用 "always" 选项结合 "markers" 时此规则的 正确 代码示例

在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "markers": ["/"] }] */

/// This is a comment with a marker
在游乐场中打开
/*eslint spaced-comment: ["error", "never", { "markers": ["!<"] }]*/

//!<This is a line comment with a marker

/*!<this is a block comment with a marker
subsequent lines are ignored
*/
在游乐场中打开
/* eslint spaced-comment: ["error", "always", { "markers": ["global"] }] */

/*global ABC*/

版本

此规则是在 ESLint v0.23.0 中引入的。

资源

更改语言