Skip to content

Commit 206fa05

Browse files
aschemanmarc0der
authored andcommitted
Add HTML Sanity Check (HSC)
Prepares implementation of aim42/htmlSanityCheck#367
1 parent d08ca6a commit 206fa05

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package io.sdkman.changelogs
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
6+
@ChangeLog(order = "088")
7+
class HscMigrations {
8+
@ChangeSet(order = "001", id = "001_add_hsc_2_0_0_rc3", author = "ascheman")
9+
def migration001(implicit db: MongoDatabase): Candidate = {
10+
Candidate(
11+
candidate = "hsc",
12+
name = "HSC (HTML Sanity Check)",
13+
description =
14+
"HSC (HTML Sanity Check) is a fast and lightweight tool for checking HTML, links, and accessibility issues. It helps ensure clean, error-free web content and integrates seamlessly into CI/CD workflows.",
15+
websiteUrl = "https://hsc.aim42.org/"
16+
).insert()
17+
}
18+
}

0 commit comments

Comments
 (0)