mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
This adds support for reading configuration from file, env support is still there and legacy env variables will still work, but flags are now following config schema, so they don't match old flags. Having a config file allows to express more complex configuration options, which is needed for some feature requests.
9 lines
154 B
Go
9 lines
154 B
Go
package models
|
|
|
|
// JiraRule is used to detect JIRA issue IDs in strings and turn those into
|
|
// links
|
|
type JiraRule struct {
|
|
Regex string
|
|
URI string
|
|
}
|