美化vscode插件,如何去除;从行尾?

Beautify vscode plugin, how to remove ; from end of line?

我正在使用 Beautify vscode 插件和一个文件:.jsbeautifyrc

但是每次我保存文件时,Beautify 都会添加一个;在行尾。

保存前:

this.user.name = 'Lucas Andrade'

保存后:

this.user.name = 'Lucas Andrade';

但我不想要 ;在行尾。

有什么配置可以告诉 Beautify 在文件末尾什么都不放吗?

如果您使用的是 prettier: https://github.com/prettier/prettier-vscode#prettiersemi-default-true

或者您需要 eslint 规则。

VSCode美化插件好像没有去掉分号的设置

编辑: 对于那些对如何实际配置 prettier 或 eslint 感兴趣的人:

更漂亮:"semi": false

ESLint:semi: "error"(注意:您可能希望在设置该规则后 运行 eslint --fix