A Yeoman composable generator to scaffold out default app files for other generators
Usage
In the generator that would like to use this one, add the following code in a method that is in yeoman.generators.Base.extend
:
this;
Using options:
this;
Example generator:
var yeoman = ;moduleexports = yeomangeneratorsBase;
Options
skip-messages
Default: false Display the usage messages. Set to false for quieter output
editorconfig
Default: true
Set to true to create a .editorconfig
file or false to skip it
gitattributes
Default: true
Set to true to create a .gitattributes
file or false to skip it
gitignore
Default: true
Set to true to create a .gitignore
file or false to skip it
jshintrc
Default: true
Set to true to create a .jshintrc
file or false to skip it
test-jshintrc
Default: true
Set to true to create a test
folder and a .jshintrc file in that folder. False does not create the folder or file