···6464 comment: "Pro Skub link found in post",
6565 reportAcct: false,
6666 commentAcct: true,
6767+ reportPost: false,
6768 toLabel: true,
6869 check: new RegExp(
6970 "skubbe\\.com|skub\\.(me|pro|tech)",
+3-1
src/developing_checks.md
···88```typescript
99export const HANDLE_CHECKS: Checks[] = [
1010 {
1111+ language: "[eng]", // Language of the check. If the check language does not match the content language, the check will be skipped. Assign null or remove field to apply to all languages.
1112 label: "example",
1213 comment: "Example found in handle",
1314 description: true, // Optional, only used in handle checks
1415 displayName: true, // Optional, only used in handle checks
1515- reportAcct: false, // it true, the check will only report the content against the account, not label.
1616+ reportAcct: false, // if true, the check will only report the content against the account, not label.
1717+ reportPost: false, // if true, the check will only report the content against the post, not label. Only used in post checks.
1618 commentOnly: false, // if true, will generate an account level comment from flagged posts, rather than a report. Intended for use when reportAcct is false, and on posts only where the flag may generate a high volume of reports.
1719 toLabel: true, // Should the handle in question be labeled if check evaluates to true.
1820 check: new RegExp("example", "i"), // Regular expression to match against the content