Skip to content

Commit

Permalink
Added additional settings to smooth the local devex
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Jan 3, 2025
1 parent 13825f2 commit a0ae74b
Show file tree
Hide file tree
Showing 5 changed files with 8,982 additions and 6,392 deletions.
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
"editor.formatOnPaste": false,
"editor.formatOnSave": true,

"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit",
Expand Down
2 changes: 1 addition & 1 deletion src/docs/snippets/gettingStarted/webApi/apiBDDE2ETest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { describe, it } from 'node:test';
import type { PricedProductItem } from '../events';
import { shoppingCartApi } from './simpleApi';

let esdbContainer: StartedEventStoreDBContainer;
const esdbContainer: StartedEventStoreDBContainer = undefined!;
const clientId = randomUUID();
const now = new Date();
const unitPrice = Math.random() * 10;
Expand Down
1 change: 1 addition & 0 deletions src/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default [
'**/*.d.ts',
'src/types/',
'!**/.eslintrc.js',
'eslint.config.mjs',
'e2e/*',
],
},
Expand Down
Loading

0 comments on commit a0ae74b

Please sign in to comment.