16 lines
390 B
TOML
16 lines
390 B
TOML
[DEFAULT]
|
|
# run `pkgcheck scan` before committing
|
|
commit.scan = true
|
|
# allow creating commits with QA errors
|
|
commit.ask = true
|
|
# add Signed-off-by tag
|
|
commit.signoff = true
|
|
# fix copyright year
|
|
commit.mangle = true
|
|
# allow pushing commits with QA errors
|
|
push.ask = true
|
|
# load api key from file outside of my config git repo
|
|
bugs.config = ~/.config/pkgdev/secrets.conf
|
|
|
|
# vim: set ft=toml:
|