We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently id_prefix can be set as part of needservice or in 'conf.py'. It will be nice to set a need type specific id_prefix automatically.
id_prefix
Is there a way to combine this with #26 so that all type-specific things are done together?
Example:
'id_prefix': 'GLOBAL_CB_', 'mappings': { 'type': ['typeName'], }, 'mappings_replaces': { '^Requirement$': 'req', '^Testcase$': 'test', }, ` 'type_options': { 'req': { 'id_prefix': 'REQ_CB_', 'another_type_specific_config': 'value', }, 'test': { 'id_prefix': 'TEST_CB_', 'another_type_specific_config': 'value', }, },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
id_prefix
can be set as part of needservice or in 'conf.py'. It will be nice to set a need type specificid_prefix
automatically.Is there a way to combine this with #26 so that all type-specific things are done together?
Example:
The text was updated successfully, but these errors were encountered: