Matej Focko
ae40226d94
- Change naming in the config - Add a template for config - Try to fix an issue with «multi-line» vs «single-line» comments Signed-off-by: Matej Focko <mfocko@redhat.com>
18 lines
No EOL
650 B
YAML
18 lines
No EOL
650 B
YAML
gitea:
|
||
# instance URL with both protocol and port, if necessary
|
||
instance_url: "‹fill in›"
|
||
# owner of the repository, usually user's login, i.e. namespace of the repository
|
||
owner: "‹fill in›"
|
||
# repository name
|
||
repository: "‹fill in›"
|
||
|
||
language:
|
||
# boolean value that is used to decide if multiline review comments have opening and closing
|
||
# symbols on the separate line
|
||
on_separate_line: true
|
||
# sequence that opens comment
|
||
opening: "/** "
|
||
# sequence that is used for multiline comments, i.e. prefixing the lines
|
||
continuation: " ** "
|
||
# sequence that closes off the comment, including newline
|
||
closing: "\n **/\n" |