如何让 WebStorm 在生成代码时使用双引号?
How can I make WebStorm use double-quotes when generating code?
WebStorm 非常有用,因为它会自动生成如下导入语句:
import { CART_DECREASE_STEP } from "@/store/mutation-types";
但是它使用单引号生成它。
如何让它使用双引号来匹配我的 lint 设置?
答案在这里
如@anstarovoyt 所建议
我建议您使用 tslint 或 jslint,以便 webstorm 可以自行配置以遵守您的规则。
WebStorm 非常有用,因为它会自动生成如下导入语句:
import { CART_DECREASE_STEP } from "@/store/mutation-types";
但是它使用单引号生成它。
如何让它使用双引号来匹配我的 lint 设置?
答案在这里
如@anstarovoyt 所建议
我建议您使用 tslint 或 jslint,以便 webstorm 可以自行配置以遵守您的规则。