Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/program-test-suite/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
*.tsbuildinfo
8 changes: 8 additions & 0 deletions packages/program-test-suite/.oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": [],
"printWidth": 80,
"sortImports": {
"newlinesBetween": false
}
}
16 changes: 16 additions & 0 deletions packages/program-test-suite/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "unicorn", "oxc"],
"categories": {
"correctness": "error",
"suspicious": "error"
},
"options": {
"typeAware": true,
"typeCheck": true
},
"rules": {},
"env": {
"builtin": true
}
}
1 change: 1 addition & 0 deletions packages/program-test-suite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [2.4.2] - 2023-04-20

### Changed

- Updated license copyright to be in line with SaaSquatch open-source policy.

## [2.4.1] - 2022-09-23
Expand Down
2 changes: 1 addition & 1 deletion packages/program-test-suite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ runProgramTests(
"src/schema/birthday-program_schema.json",
// Default program template and program rules to use while testing
"__tests__/defaults/template.json",
"__tests__/defaults/rules.json"
"__tests__/defaults/rules.json",
);
```
Loading
Loading