Is is possible to change what the "rw g" command generate

Hi @viperfx.

I thought there was an existing issue for this suggestion (add option not to generate test or stories for pages, components, cells, layouts, etc) but I could not find one.

Could you add an issue and label it with the generator topic?

Also, any suggestions for the options?

--no--test
--no-story

--no--tests
--no-stories

?

I think it would definitely be a cli option, but it could be toml configured, too.

If so, what would yo want the config to look like?

[web]
  port = 8910
  apiProxyPath = "/.netlify/functions"
  [generate]
    stories = "false"
    tests = "false"

Or would you need this to be on a page or cell or component basis?

[web]
  port = 8910
  apiProxyPath = "/.netlify/functions"
  [generate]
    [cells]
      stories = "true"
      tests = "false"
    [pages]
      stories = "false"
      tests = "true"