加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
meta.js 2.37 KB
一键复制 编辑 原始数据 按行查看 历史
Moritz Kröger 提交于 2017-04-05 18:36 . Fixed naming of Airbnb
module.exports = {
"helpers": {
"if_or": function (v1, v2, options) {
if (v1 || v2) {
return options.fn(this);
}
return options.inverse(this);
}
},
"prompts": {
"name": {
"type": "string",
"required": true,
"message": "Project name"
},
"description": {
"type": "string",
"required": false,
"message": "Project description",
"default": "A Vue.js project"
},
"author": {
"type": "string",
"message": "Author"
},
"build": {
"type": "list",
"message": "Vue build",
"choices": [
{
"name": "Runtime + Compiler: recommended for most users",
"value": "standalone",
"short": "standalone"
},
{
"name": "Runtime-only: about 6KB lighter min+gzip, but templates (or any Vue-specific HTML) are ONLY allowed in .vue files - render functions are required elsewhere",
"value": "runtime",
"short": "runtime"
}
]
},
"router": {
"type": "confirm",
"message": "Install vue-router?"
},
"lint": {
"type": "confirm",
"message": "Use ESLint to lint your code?"
},
"lintConfig": {
"when": "lint",
"type": "list",
"message": "Pick an ESLint preset",
"choices": [
{
"name": "Standard (https://github.com/feross/standard)",
"value": "standard",
"short": "Standard"
},
{
"name": "Airbnb (https://github.com/airbnb/javascript)",
"value": "airbnb",
"short": "Airbnb"
},
{
"name": "none (configure it yourself)",
"value": "none",
"short": "none"
}
]
},
"unit": {
"type": "confirm",
"message": "Setup unit tests with Karma + Mocha?"
},
"e2e": {
"type": "confirm",
"message": "Setup e2e tests with Nightwatch?"
}
},
"filters": {
".eslintrc.js": "lint",
".eslintignore": "lint",
"config/test.env.js": "unit || e2e",
"test/unit/**/*": "unit",
"build/webpack.test.conf.js": "unit",
"test/e2e/**/*": "e2e",
"src/router/**/*": "router"
},
"completeMessage": "To get started:\n\n {{^inPlace}}cd {{destDirName}}\n {{/inPlace}}npm install\n npm run dev\n\nDocumentation can be found at https://vuejs-templates.github.io/webpack"
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化