1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
overlay = '.'
uploaders = ['Blair Noctis <ncts@debian.org>']
excludes = [
'doc/*.png',
# img/logo*.svg and website/docs/img/logo*.svg are CC-BY-SA-4.0 licensed,
# text of which is too long, and they are not used in the program anyway.
'img/*', 'website/docs/img/*',
# We only need the .md text files, not other "website" material.
'website/custom_theme/*', 'website/docs/css/*', 'website/docs/js/*',
# As resources/README.md stated, they are sourced from pixabay.com, CC0
# licensed, but from too many copyright holders.
'resources/*.mp3',
'**/*.sh',
]
collapse_features = true
[source]
section = 'devel'
[packages.bin]
section = 'devel'
extra_lines = ['Conflicts: ruby-bacon']
summary = 'background code checker'
description = '''
bacon is a code checker designed to run in the background, alongside your
editor, with minimal interaction, notifying you of warnings, errors, or test
failures.
Originally developed for Rust/cargo, support for other languages/runtimes are
now added, e.g. Python/pytest, Python/ruff, JavaScript/eslint.
'''
[packages.lib]
section = 'rust'
summary = 'background code checker - Rust source code'
description = '''
bacon is a code checker designed to run in the background, alongside your
editor, with minimal interaction, notifying you of warnings, errors, or test
failures.
This package contains its source code.
'''
|