Skip to content

Commit

Permalink
Add vscode settings and recommended extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieusieben committed Feb 7, 2025
1 parent f90eedc commit 95e95fd
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"wengerk.highlight-bad-chars",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker"
]
}
48 changes: 46 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,50 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.language": "en,en-US",
"cSpell.userWords": [
"algs",
"appview",
"atproto",
"blockstore",
"bluesky",
"bsky",
"bsync",
"clsx",
"consolas",
"dpop",
"googleusercontent",
"hexeditor",
"ingester",
"insertable",
"jwks",
"keypair",
"kysely",
"merkle",
"msid",
"multibase",
"multiformats",
"nameserver",
"oidc",
"pkce",
"ponyfill",
"proxied",
"ssrf",
"undici",
"webcrypto",
"whatwg",
"xrpc"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.sortImports": "never"
},
"files.associations": {
"**/tsconfig/*.json": "jsonc"
}
},
"files.defaultLanguage": "ts",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"typescript.tsdk": "node_modules/typescript/lib"
}

0 comments on commit 95e95fd

Please sign in to comment.