cibernox / ember-cli-yuidoc

EmberCLI addon for generate documentation from YUIDoc coments
MIT License
55 stars 25 forks source link

Yuidoc config #21

Closed fsmanuel closed 9 years ago

fsmanuel commented 9 years ago

There is no way to overwrite the config defaults

I want to change parseOnly and i can see why a merge isn't the way to go (preserve exclude). My suggestion is:

yuidoc: {
  linkNatives: config.options.linkNatives || true,
  quiet: config.options.quiet || true,
  parseOnly: config.options.parseOnly || false,
  lint: config.options.lint || false,
  exclude: exclusions.join(',')
}