提交文件后,我的 IDE WebStorm 将字符串更改'We can\’t'
为"We can’t"
How can I prevent this ?
我已经做了 Preferences -> Editor -> Code Style -> TypeScript -> Punctuation And put 'single' quotes 'always'
提交文件后,我的 IDE WebStorm 将字符串更改'We can\’t'
为"We can’t"
How can I prevent this ?
我已经做了 Preferences -> Editor -> Code Style -> TypeScript -> Punctuation And put 'single' quotes 'always'
您是否使用 Prettier 进行代码重新格式化?当配置为使用单引号时,它倾向于最小化转义,在这种情况下将单引号更改为双引号,请参阅https://github.com/prettier/prettier/issues/3804#issuecomment-359961713