Yeoman没有使用github安装/更新最新版本的生成器

时间:2016-04-17 22:42:36

标签: jekyll yeoman yeoman-generator

我正在使用generator-jekyllrb,它使用grunt。当我在终端中运行grunt命令时会出现这些错误。

Gruntfile.js
  line 63  col 24  Strings must use singlequote.
  line 64  col 21  Strings must use singlequote.
  line 65  col 34  Strings must use singlequote.
  line 74  col 42  Strings must use singlequote.
  line 91  col 24  Strings must use singlequote.
  line 92  col 21  Strings must use singlequote.
  line 93  col 34  Strings must use singlequote.

✖ 7 problems

由于我的Gruntfile.js文件中这些行的双引号,它会出错。

...
options: {
          server: {
            baseDir: [
              ".jekyll",
              ".tmp",
              "<%= yeoman.app %>"
...

但是当我检查jekyllrb的github页面时,可以看到这个问题已经解决,Gruntfile.js用单引号的行提交。

Gruntfile.js一年前用Gruntfile.js中的单引号替换双引号

我尝试删除/重新安装并更新jekyllrb,但都不起作用。它仍然用双引号下载jekylrrb。

1 个答案:

答案 0 :(得分:0)

.jshintrc中,您可以更改

"quotmark": "single",

"quotmark": "double",

请参阅jshint doc http://jshint.com/docs/options/