feat: implement linting and testing

This commit is contained in:
Stijnvandenbroek
2026-03-03 22:02:25 +00:00
parent 8dd6a7b890
commit fc43570506
16 changed files with 884 additions and 56 deletions

19
.prettierrc Normal file
View File

@@ -0,0 +1,19 @@
{
"printWidth": 100,
"proseWrap": "always",
"tabWidth": 2,
"overrides": [
{
"files": "*.yml",
"options": { "singleQuote": false }
},
{
"files": "*.yaml",
"options": { "singleQuote": false }
},
{
"files": "*.json",
"options": { "trailingComma": "none" }
}
]
}