Skip to content

Commit

Permalink
Refactor validator classes
Browse files Browse the repository at this point in the history
The current state of this branch is a work-in-progress: lots of
incomplete implementations and tests. Use this branch to work towards a
complete implementation of the refactored validator classes.
  • Loading branch information
mint-thompson committed Oct 22, 2024
1 parent 39e25a3 commit 550536a
Show file tree
Hide file tree
Showing 82 changed files with 7,544 additions and 9,601 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
lib/
coverage/
.DS_Store
.vscode
.vscode
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"endOfLine": "lf",
"semi": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
Expand Down
17 changes: 17 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const config = {
moduleFileExtensions: ['js', 'ts'],
transform: {
'^.+\\.(js|jsx|ts|tsx)$': [
'ts-jest',
{
tsconfig: '<rootDir>/test/tsconfig.json'
}
]
},
testMatch: ['**/test/**/*.test.(ts|js)'],
testEnvironment: 'node',
setupFilesAfterEnv: ['jest-extended/all'],
preset: 'ts-jest'
}

export default config
Loading

0 comments on commit 550536a

Please sign in to comment.