Skip to content

Commit

Permalink
Respond to some review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-corbalt committed Mar 7, 2024
1 parent 5071c88 commit f058b75
Show file tree
Hide file tree
Showing 6 changed files with 580 additions and 116 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
15 changes: 15 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-constant-condition": ["error", { "checkLoops": false }],
}
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,21 @@
"test": "vitest --config ./src/tests/vitest.config.ts",
"test-ci": "vitest run --config ./src/tests/vitest.config.ts",
"test-gui": "vitest --ui",
"coverage": "vitest run --coverage"
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.15.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.30.1",
"aws-sdk-client-mock": "^2.1.1",
"eslint": "^8.57.0",
"semantic-release": "^21.0.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4",
"vitest": "^0.34.3"
},
Expand Down
Loading

0 comments on commit f058b75

Please sign in to comment.