mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
31 lines
976 B
YAML
31 lines
976 B
YAML
exclude:
|
|
# Exclude platforms to be scanned
|
|
platforms:
|
|
- 'romm'
|
|
|
|
# Exclude roms or parts of roms to be scanned
|
|
roms:
|
|
## Single file games section
|
|
single_file:
|
|
# Exclude matched file names to be sanned
|
|
names:
|
|
- 'info.txt'
|
|
# Exclude all files with certain extensions to be scanned
|
|
extensions:
|
|
- 'xml'
|
|
|
|
## Multi files games section
|
|
multi_file:
|
|
# Exclude matched 'folder' (RomM identifies folders as multi file games) names to be scanned
|
|
names:
|
|
- 'my_multi_file_game'
|
|
- 'DLC'
|
|
parts:
|
|
# Exclude matched file names to be sanned from multi file roms
|
|
# Keep in mind that RomM doesn't scan folders inside multi files games,
|
|
# so there is no need to exclude folders from inside of multi files games.
|
|
names:
|
|
- 'data.xml'
|
|
# Exclude all files with certain extensions to be scanned from multi file roms
|
|
extensions:
|
|
- 'txt' |