Remove specific blacklist file for tags

This commit is contained in:
Joshua Ramon Enslin 2021-07-14 13:46:27 +02:00
parent f930ca794e
commit 7e27f15515
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -1,22 +0,0 @@
<?PHP
/**
* Constains a list of disallowed tags.
*
* @author Joshua Ramon Enslin <joshua@jrenslin.de>
*/
declare(strict_types = 1);
/**
* Provides a list of disallowed tags.
*/
final class NodaTagBlacklist {
const BLACKLIST = [
'de' => [
'Sonst.',
'Sonstige',
'Sonstiges',
],
];
}