feat: initial prototype
Node.js CI / Lint and Test (push) Failing after 38s

This commit is contained in:
2025-08-22 13:40:16 -07:00
parent 46585383b4
commit dc317abfff
12 changed files with 7837 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { OptionsObject } from "alex";
/**
* The config for Alex.
* @see https://www.npmjs.com/package/alex#configuration
* @see https://github.com/retextjs/retext-equality/blob/main/rules.md
* @see https://github.com/retextjs/retext-profanities/tree/main?tab=readme-ov-file
*/
export const alexConfig: OptionsObject = {
allow: [
"boy-girl",
"boyfriend-girlfriend",
"boyfriends-girlfriends",
"bride-groom",
"brother-sister",
"brothers-sisters",
"dad-mom",
"dads-moms",
"daughter-son",
"daughters-sons",
"godfather-godmother",
"gramps-granny",
"granddaughter-grandson",
"granddaughters-grandsons",
"grandfathers-grandmothers",
"he-she",
"her-him",
"herself-himself",
"husband-wife",
"husbands-wives",
"stepbrother-stepsister",
"stepbrothers-stepsisters",
],
};