mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
27 lines
852 B
ReStructuredText
27 lines
852 B
ReStructuredText
IHate Plugin
|
|
============
|
|
|
|
The ``ihate`` plugin allows you to automatically skip things you hate during
|
|
import or warn you about them. You specify queries (see
|
|
:doc:`/reference/query`) and the plugin skips (or warns about) albums or items
|
|
that match any query.
|
|
|
|
To use the plugin, first enable it in your configuration (see
|
|
:ref:`using-plugins`). Then, add an ``ihate:`` section to your configuration
|
|
file::
|
|
|
|
ihate:
|
|
# Print a warning message for these.
|
|
warn:
|
|
- artist:rnb
|
|
- genre: soul
|
|
# Only warn about tribute albums in rock genre.
|
|
- genre:rock album:tribute
|
|
# Never import any of this.
|
|
skip:
|
|
- genre::russian\srock
|
|
- genre:polka
|
|
- artist:manowar
|
|
- album:christmas
|
|
|
|
The plugin trusts your decision in "as-is" imports.
|