@hw-stylistic/no-multi-spaces
不允许出现连续多个空格,除非是换行。该规则仅检查.ets文件类型。
规则配置
// code-linter.json5
{
"rules": {
"@hw-stylistic/no-multi-spaces": "error"
}
}
选项
该规则无需配置额外选项。
正例
export const message: string = 'Hello World';
反例
// Multiple spaces found before 'message'.
// Multiple spaces found before 'string'.
// Multiple spaces found before '='.
// Multiple spaces found before 'Hello World'.
export const message: string = 'Hello World';
规则集
"plugin:@hw-stylistic/recommended"
"plugin:@hw-stylistic/all"
Code Linter代码检查规则的配置指导请参考Code Linter代码检查。