Aria Moradi d0793a1741
add linting to multisrc (#8740)
* add linting to multisrc

* remove generated blocks

* lint again

* re-format the file

* remove buildScript block

* manaully format

* remove groups
2021-08-22 11:29:08 -04:00

13 lines
586 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package eu.kanade.tachiyomi.extension.en.readhaikyuumangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
class ReadHaikyuuMangaOnline : MangaCatalog("Read Haikyuu!! Manga Online", "https://ww6.readhaikyuu.com", "en") {
override val sourceList = listOf(
Pair("Haikyuu", "$baseUrl/manga/haikyuu/"),
Pair("Haikyuu-bu!!", "$baseUrl/manga/haikyuu-bu/"),
Pair("Haikyuu! x Nisekoi", "$baseUrl/manga/haikyuu-x-nisekoi/"),
Pair("Lets! Haikyu!?", "$baseUrl/manga/lets-haikyu/"),
).sortedBy { it.first }.distinctBy { it.second }
}