在windows环境下运行compass文件出现的错误提示解决方案 例如:经常在项目中运行grunt命令编译scss文件的时候,会出现下面的错误提示 (Encoding::CompatibilityError on line ["87"] of c: incompatible character encodings: GBK and UTF-8) 解决方法:1.项目中可能包含了中文路径,把中文路径改为英文路径 2.在scss文件中可能用了中文注释,把…
运行 npm run lint -- --fix,提示:error Use the global form of 'use strict',使用说明网址:https://eslint.org/docs/2.0.0/rules/strict#options 解决办法: .eslintrc 文件中,添加如下配置:不使用"use strict",就不提示了: { "rules": { "strict": [2, "never"] }…